Files
anti-hvost/src/pages/profile_tasks.dto.ts

9 lines
132 B
TypeScript

export interface ITask {
id: number;
name: string;
checked: boolean;
date: Date;
description: string;
tags: string[];
}