Files
TimetableDesigner/TimetableDesigner.Customs/JsonSerializableDictionary.cs
Mateusz Skoczek a49f1bd378
Some checks failed
Build, test and publish app / Build and test (push) Successful in 41s
Build, test and publish app / Determine version (push) Successful in 19s
Build, test and publish app / Pack (x86) (push) Successful in 1m49s
Build, test and publish app / Pack (x64) (push) Successful in 1m56s
Build, test and publish app / Publish (push) Failing after 25s
Update TimetableDesigner.Customs/JsonSerializableDictionary.cs
2026-02-11 21:55:26 +01:00

14 lines
313 B
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TimetableDesigner.Customs
{
[JsonArray]
public class JsonSerializableDictionary<TKey, TValue> : Dictionary<TKey, TValue> where TKey : notnull
{ }
}