1234567891011121314151617181920 |
- using Newtonsoft.Json;
- namespace HttpApi
- {
- public abstract class AbsSessionObj
- {
- [JsonProperty] protected readonly string session;
-
- protected AbsSessionObj(string session)
- {
- this.session = session;
- }
-
- public virtual string ToJson()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- }
|