| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CommonObj.model
- {
- public class termObj
- {
- [JsonProperty("id")]
- public string id { get; set; }
- [JsonProperty("status")]
- public string status { get; set; }
- [JsonProperty("startDate")]
- public string startDate { get; set; }
- [JsonProperty("endDate")]
- public string endDate { get; set; }
- [JsonProperty("randomDate")]
- public string randomDate { get; set; }
- [JsonProperty("moneyWinner")]
- public string moneyWinner { get; set; }
-
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- }
|