member data listing
This commit is contained in:
parent
5eeea631c0
commit
6847ae083e
14 changed files with 286 additions and 15 deletions
|
@ -1,16 +1,18 @@
|
|||
import type { CommunicationFieldType } from "../../types/fieldTypes";
|
||||
|
||||
export interface CommunicationTypeViewModel {
|
||||
id: number;
|
||||
type: string;
|
||||
fields: Array<string>;
|
||||
fields: Array<CommunicationFieldType>;
|
||||
}
|
||||
|
||||
export interface CreateCommunicationTypeViewModel {
|
||||
type: string;
|
||||
fields: Array<string>;
|
||||
fields: Array<CommunicationFieldType>;
|
||||
}
|
||||
|
||||
export interface UpdateCommunicationTypeViewModel {
|
||||
id: number;
|
||||
type: string;
|
||||
fields: Array<string>;
|
||||
fields: Array<CommunicationFieldType>;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue