Some checks failed
Build, test and publish app / Build and test (push) Failing after 30s
Build, test and publish app / Determine version (push) Successful in 2m20s
Build, test and publish app / Pack (x64) (push) Has been skipped
Build, test and publish app / Pack (x86) (push) Has been skipped
Build, test and publish app / Publish (push) Has been skipped
14 lines
313 B
C#
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
|
|
{ }
|
|
}
|