summaryrefslogtreecommitdiff
path: root/DTOs/CreateGroup.cs
blob: 71cb77b89a054f49fd96aaa4a5c957bfc882b47a (plain)
1
2
3
4
5
6
7
8
9
10
using System.ComponentModel.DataAnnotations;
using LibraryAPI.Validators;

namespace LibraryAPI.DTOs {
    public class CreateGroup {
        [Required]
        [Name]
        public string? Name { get; set; }
    }
}