All checks were successful
Build, test and publish app / Build, test and determine version (push) Successful in 45s
Build, test and publish app / Pack (x86) (push) Successful in 1m51s
Build, test and publish app / Pack (x64) (push) Successful in 1m56s
Build, test and publish app / Publish (push) Successful in 16s
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
|
|
{ }
|
|
}
|