6 lines
167 B
C#
6 lines
167 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Backend.Dtos;
|
|
|
|
public record CreateTodoRequest([Required, StringLength(500, MinimumLength = 1)] string Title);
|