using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ewide.Application { public class HouseLogOutput { public string TargetUserNames { get; set; } public int Type { get; set; } public int Status { get; set; } public DateTime CreatedTime { get; set; } public DateTime? UpdatedTimeg { get; set; } public string CreatedUserName { get; set; } public string UpdatedUserName { get; set; } } }