using Newtonsoft.Json; namespace ServiceClient.Response.Householder { public class HouseholderItem { [JsonProperty("ID")] public int UserId { get; set; } [JsonProperty("name")] public string Name { get; set; } = ""; [JsonProperty("mobile")] public string Mobile { get; set; } = ""; } }