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

9 lines
224 B
C#

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