- using System;
- using System.Collections.Generic;
- using Newtonsoft.Json;
- namespace YZXYH.Repository.Models
- {
- [Serializable]
- public partial class UserLastLogin
- {
- public string Id { get; set; }
- public string UserNo { get; set; }
- public Nullable<System.DateTime> TimeLastLogin { get; set; }
- public string IpAddress { get; set; }
- }
- }
|