protocol base views

This commit is contained in:
Julian Krauser 2024-10-03 13:43:13 +02:00
parent f453bdc7d3
commit c1e9784b4a
14 changed files with 708 additions and 24 deletions

View file

@ -0,0 +1,16 @@
export interface ProtocolViewModel {
id: number;
title: string;
date: Date;
}
export interface CreateProtocolViewModel {
title: string;
date: Date;
}
export interface UpdateProtocolViewModel {
id: number;
title: string;
date: Date;
}