@ability-ocean/dtos
Version:
Re-usable `Data Transfer Objects` that can be used when communicating with our API.
18 lines (17 loc) • 365 B
TypeScript
export declare class NotificationEditDTO {
name: string;
entity: number;
event: number;
type: number;
body: string;
active: boolean;
from: string;
to: string;
monday: boolean;
tuesday: boolean;
wednesday: boolean;
thursday: boolean;
friday: boolean;
saturday: boolean;
sunday: boolean;
}