2026-03-18 20:09:32 +03:00

8 lines
160 B
C#

using System;
public interface IJsonObject<T>
{
string ConvertToJson();
static T FromJson(string jsonString) => throw new NotImplementedException();
}