using System; using System.Collections.Generic; using Newtonsoft.Json; namespace YZXYH.Repository.Models { [Serializable] public partial class View_UserLastLoginTime { public string UserNo { get; set; } public Nullable TimeLastLogin { get; set; } public string Name { get; set; } public string Mobile { get; set; } } }