Files
TimetableDesigner/TimetableDesigner.Customs/JsonSerializableDictionary.cs
Mateusz Skoczek f51763be0e
Some checks failed
Build, test and publish app / Build and test (push) Successful in 37s
Build, test and publish app / Determine version (push) Successful in 21s
Build, test and publish app / Pack (x86) (push) Failing after 1m14s
Build, test and publish app / Pack (x64) (push) Failing after 1m19s
Build, test and publish app / Publish (push) Has been skipped
Update TimetableDesigner.Customs/JsonSerializableDictionary.cs
2026-02-11 21:51:29 +01:00

15 lines
318 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
{
}
}