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
|
2026-02-11 21:35:37 +01:00
|
|
|
|
{ }
|
2023-05-07 17:39:24 +02:00
|
|
|
|
}
|