Files
Backend-Api/AccountManagement.Application.Contracts/Task/CompleteTaskViewModel.cs
2024-08-24 19:13:34 +03:30

7 lines
180 B
C#

namespace AccountManagement.Application.Contracts.Task;
public class CompleteTaskViewModel
{
public long TaskId { get; set; }
public string? Description { get; set; }
}