GetCurrentLoginInformationsOutput.cs 216 B

123456789
  1. namespace WeApp.BaseSystem.Sessions.Dto
  2. {
  3. public class GetCurrentLoginInformationsOutput
  4. {
  5. public UserLoginInfoDto User { get; set; }
  6. public TenantLoginInfoDto Tenant { get; set; }
  7. }
  8. }