14 lines
266 B
C#
14 lines
266 B
C#
|
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
|
||
|
|
namespace WorkClub.Application.Tasks.DTOs;
|
||
|
|
|
||
|
|
public record CreateTaskRequest(
|
||
|
|
[Required]
|
||
|
|
string Title,
|
||
|
|
string? Description,
|
||
|
|
[Required]
|
||
|
|
Guid ClubId,
|
||
|
|
Guid? AssigneeId,
|
||
|
|
DateTimeOffset? DueDate
|
||
|
|
);
|