AuthResponse.cs 492 B

1234567891011121314151617181920
  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 string Token{ get; set; }
  16. public DateTime Expiration { get; set; }
  17. }
  18. }