using System;
using System.Collections.Generic;
namespace Dpz.Core.Auth.Models;
public class PageAuthorizationModel
{
public string Id { get; set; } = string.Empty;
public string ApplicationId { get; set; } = string.Empty;
public string ApplicationName { get; set; } = string.Empty;
public string? Status { get; set; }
public string StatusName { get; set; } = string.Empty;
public string? Type { get; set; }
public string TypeName { get; set; } = string.Empty;
public DateTime? CreationDate { get; set; }
public List<string> Scopes { get; set; } = [];
}