这是基于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.
 
 
 
 
 
 

32 lines
712 B

export interface Resource {
id: string;
name: string;
displayName: string;
description: string;
}
export interface ResourceCreateOrUpdate {
enable: boolean;
displayName: string;
description?: string;
defaultCultureName?: string;
}
export interface ResourceCreate extends ResourceCreateOrUpdate {
name: string;
}
export interface ResourceUpdate extends ResourceCreateOrUpdate {}
export interface ResourceListResult extends ListResultDto<Resource> {}
export interface ResourcePagedResult extends PagedResultDto<Resource> {}
export interface GetResourcePagedRequest extends PagedAndSortedResultRequestDto {
filter?: string;
}
export interface GetResourceWithFilter {
filter?: string;
}