123456789101112131415161718192021 |
- 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 UserDto User { get; set; }
- public string Token{ get; set; }
- public DateTime Expiration { get; set; }
- }
- }
|