using System; namespace TsSFCDeivceClient.Model { public class UserInfo { public int Id { get; set; } public Guid GUID { get; set; } public string UserCode { get; set; } public string UserName { get; set; } public string Password { get; set; } public bool HasPost { get; set; } } }