using System.Collections.Generic; using AccountManagement.Application.Contracts.Media; namespace AccountManagement.Application.Contracts.Task; public class EditTask:CreateTask { public long Id { get; set; } public List medias { get; set; } public string? CompleteDescription { get; set; } public bool IsDone { get; set; } public List DeletedFileIds { get; set; } }