self defined value tables - getters
This commit is contained in:
parent
c85f23ed73
commit
ddb355836a
28 changed files with 1067 additions and 0 deletions
4
src/viewmodel/admin/award.models.ts
Normal file
4
src/viewmodel/admin/award.models.ts
Normal file
|
@ -0,0 +1,4 @@
|
|||
export interface AwardViewModel {
|
||||
id: number;
|
||||
award: string;
|
||||
}
|
5
src/viewmodel/admin/communicationType.models.ts
Normal file
5
src/viewmodel/admin/communicationType.models.ts
Normal file
|
@ -0,0 +1,5 @@
|
|||
export interface CommunicationTypeViewModel {
|
||||
id: number;
|
||||
type: string;
|
||||
useColumns: Array<string>;
|
||||
}
|
4
src/viewmodel/admin/executivePosition.models.ts
Normal file
4
src/viewmodel/admin/executivePosition.models.ts
Normal file
|
@ -0,0 +1,4 @@
|
|||
export interface ExecutivePositionViewModel {
|
||||
id: number;
|
||||
position: string;
|
||||
}
|
4
src/viewmodel/admin/membershipStatus.models.ts
Normal file
4
src/viewmodel/admin/membershipStatus.models.ts
Normal file
|
@ -0,0 +1,4 @@
|
|||
export interface MembershipStatusViewModel {
|
||||
id: number;
|
||||
status: string;
|
||||
}
|
5
src/viewmodel/admin/qualification.models.ts
Normal file
5
src/viewmodel/admin/qualification.models.ts
Normal file
|
@ -0,0 +1,5 @@
|
|||
export interface QualificationViewModel {
|
||||
id: number;
|
||||
qualification: string;
|
||||
description: string | null;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue