13 lines
324 B
C#
13 lines
324 B
C#
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; } = "";
|
|
}
|
|
} |