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