Files
juipnet/Infrastructure/ServiceClient/BaseInfoClient/Response/Householder/HouseholderItem.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

13 lines
336 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; } = "";
}
}