using System.ComponentModel.DataAnnotations; namespace Jellyfin.Api.Models.SyncPlayDtos; /// /// Class NewGroupRequestDto. /// public class NewGroupRequestDto { /// /// Initializes a new instance of the class. /// public NewGroupRequestDto() { GroupName = string.Empty; } /// /// Gets or sets the group name. /// /// The name of the new group. [StringLength(200, ErrorMessage = "Group name must not exceed 200 characters.")] public string GroupName { get; set; } }