Files
TimetableDesigner/TimetableDesigner.Customs/JsonSerializableDictionary.cs

15 lines
318 B
C#
Raw Normal View History

2023-05-07 17:39:24 +02:00
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
{
}
2023-05-07 17:39:24 +02:00
}