/ Published in: C#
Expand |
Embed | Plain Text
using System; using System.Web.Script.Serialization; namespace Test { [Serializable] public class BaseResult { public bool Success { get; set; } public string Message { get; set; } public string ToJson() { var _this = serializer.Serialize(this); return _this; } } }
You need to login to post a comment.
