AuthResponse.cs 542 B

123456789101112131415161718192021
  1. using MTWorkHR.Core.Global;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace MTWorkHR.Application.Models
  8. {
  9. public class AuthResponse
  10. {
  11. // public string Id { get; set; }
  12. // public string UserName { get; set; }
  13. // public string Email { get; set; }
  14. // public int UserTypeId { get; set; }
  15. public UserDto User { get; set; }
  16. public string Token{ get; set; }
  17. public DateTime Expiration { get; set; }
  18. }
  19. }