Files
zszq-trs/Framework/YLErp.Core/Abstract/IJsonSerializable.cs
T
2024-05-09 14:06:26 +08:00

8 lines
108 B
C#

namespace YLErp.Abstract
{
public interface IJsonSerializable
{
string ToJson();
}
}