Files
Backend-Api/AccountManagement.Application.Contracts/Task/CompleteTaskViewModel.cs
2024-07-09 19:06:41 +03:30

8 lines
193 B
C#

#nullable enable
namespace AccountManagement.Application.Contracts.Task;
public class CompleteTaskViewModel
{
public long Id { get; set; }
public string? Description { get; set; }
}