Files
Backend-Api/AccountManagement.Application.Contracts/Task/CompleteTaskViewModel.cs
2024-07-05 21:36:15 +03:30

7 lines
176 B
C#

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