8 lines
160 B
C#
8 lines
160 B
C#
using System;
|
|
|
|
public interface IJsonObject<T>
|
|
{
|
|
string ConvertToJson();
|
|
static T FromJson(string jsonString) => throw new NotImplementedException();
|
|
}
|