/
codiart
/
new_light_server
Обзор
Документация
Войти
/
codiart
/
new_light_server
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/application/commands/AddTask.ts
16 строк
330 B
Maxim
Initial
05 ноя 2025, 18:08
05 ноя 2025, 18:08
b73e3bd
Код
Авторство
О чём код?
import { TaskCommand } from "./Task"; export class AddTaskCommand extends TaskCommand { constructor( title: string = '', text: string = '', completed: boolean = false, priority: number = 0 ) { super() this.title = title; this.text = text; this.completed = completed; this.priority = priority; } }