1234567891011121314151617181920 |
- using MTWorkHR.Core.Global;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MTWorkHR.Application.Models
- {
- public class AuthResponse
- {
- public string Id { get; set; }
- public string UserName { get; set; }
- public string Email { get; set; }
- public int UserTypeId { get; set; }
- public string Token{ get; set; }
- public DateTime Expiration { get; set; }
- }
- }
|