namespace RustTools.DataList; /// /// 动态信息 /// public class MovingInfo { public int Code { get; set; } public string Message { get; set; } public List Data { get; set; } public class DynamicRecord { public string Id { get; set; } public string Account { get; set; } public string Content { get; set; } public bool Visible { get; set; } public DateTime Time { get; set; } public string Location { get; set; } public string UserName { get; set; } public string HeadIcon { get; set; } public string Email { get; set; } public int Permission { get; set; } public DateTime LoginTime { get; set; } public int Gender { get; set; } // -1 未知, 0 女, 1 男 public bool Enable { get; set; } } }