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.
23 lines
511 B
23 lines
511 B
import {
|
|
IHasConcurrencyStamp,
|
|
AuditedEntityDto,
|
|
PagedAndSortedResultRequestDto,
|
|
} from '../../model/baseModel';
|
|
|
|
export interface Edition extends AuditedEntityDto {
|
|
id: string;
|
|
displayName: string;
|
|
}
|
|
|
|
interface EditionCreateOrUpdate {
|
|
displayName: string;
|
|
}
|
|
|
|
export type EditionCreate = EditionCreateOrUpdate;
|
|
|
|
export interface EditionUpdate extends EditionCreateOrUpdate, IHasConcurrencyStamp {
|
|
}
|
|
|
|
export interface EditionGetListInput extends PagedAndSortedResultRequestDto {
|
|
filter?: string;
|
|
}
|
|
|