5 lines
115 B
C#

namespace TaskProject.Entity
{
public record TaskDto(string Title, string Description, Guid ProjectId) {}
}