ApplicationConfigurationDto.cs 457 B

123456789101112131415161718192021222324
  1. using System.Collections.Generic;
  2. using System.Text.Json;
  3. namespace Blazor.App.Dtos
  4. {
  5. public class ApplicationConfigurationDto
  6. {
  7. public AuthDto Auth { get; set; }
  8. public class AuthDto
  9. {
  10. public object Policies { get; set; }
  11. public object GrantedPolicies { get; set; }
  12. }
  13. public class CurrentUser
  14. {
  15. public bool IsAuthenticated { get; set; }
  16. }
  17. }
  18. }