网站首页 网站源码
website
站点相关全部源代码,隐藏了一些关于服务器的信息
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; } = [];
}



loading