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