| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using Newtonsoft.Json;
- namespace ResfullApi.Models
- {
- [Serializable]
-
- public class newsSmsObj
- {
- [JsonProperty("id")]
- public string id { get; set; }
- [JsonProperty("title")]
- public string title { get; set; }
- [JsonProperty("serviceId")]
- public string serviceid { get; set; }
- [JsonProperty("content")]
- public string content { get; set; }
- [JsonProperty("dateSend")]
- public string dateSend { get; set; }
- [JsonProperty("status")]
- public string status { get; set; }
- [JsonProperty("sysdate")]
- public string sysdate { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- }
|