Files
Backend-Api/AccountManagement.Application.Contracts/Task/EditTask.cs
2024-07-10 20:25:54 +03:30

12 lines
411 B
C#

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<MediaViewModel> medias { get; set; }
public string? CompleteDescription { get; set; }
public bool IsDone { get; set; }
public List<long> DeletedFileIds { get; set; }
}