这是基于vue-vben-admin 模板适用于abp Vnext的前端管理项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

47 lines
1.4 KiB

export interface OpenIddictApplicationGetListInput extends PagedAndSortedResultRequestDto {
filter?: string;
}
export type OpenIddictApplicationCreateDto = OpenIddictApplicationCreateOrUpdateDto;
export type OpenIddictApplicationUpdateDto = OpenIddictApplicationCreateOrUpdateDto;
export interface OpenIddictApplicationDto extends ExtensibleAuditedEntityDto<string> {
clientId: string;
clientSecret?: string;
clientType?: string;
applicationType?: string;
consentType?: string;
displayName?: string;
displayNames?: Dictionary<string, string>;
endpoints?: string[];
grantTypes?: string[];
responseTypes?: string[];
scopes?: string[];
postLogoutRedirectUris?: string[];
properties?: Dictionary<string, string>;
redirectUris?: string[];
requirements?: string[];
clientUri?: string;
logoUri?: string;
}
export interface OpenIddictApplicationCreateOrUpdateDto extends ExtensibleObject {
clientId: string;
clientSecret?: string;
clientType?: string;
applicationType?: string;
consentType?: string;
displayName?: string;
displayNames?: Dictionary<string, string>;
endpoints?: string[];
grantTypes?: string[];
responseTypes?: string[];
scopes?: string[];
postLogoutRedirectUris?: string[];
properties?: Dictionary<string, string>;
redirectUris?: string[];
requirements?: string[];
clientUri?: string;
logoUri?: string;
}