mirror of
https://github.com/KevinMidboe/seasoned.git
synced 2026-03-10 11:29:07 +00:00
20 lines
321 B
TypeScript
20 lines
321 B
TypeScript
export interface Result {
|
|
id: number;
|
|
title: string;
|
|
year: number;
|
|
type: string;
|
|
status: string;
|
|
requested_date: Date;
|
|
}
|
|
|
|
export interface IRequestStatusResponse {
|
|
success: boolean;
|
|
message?: string;
|
|
result?: Result;
|
|
}
|
|
|
|
export interface IRequestSubmitResponse {
|
|
success: boolean;
|
|
message: string;
|
|
}
|