aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/SyncPlayDtos/NewGroupRequestDto.cs
blob: 441d7be367eda1ef93ee6d1070835b0ab22f2293 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
namespace Jellyfin.Api.Models.SyncPlayDtos
{
    /// <summary>
    /// Class NewGroupRequestDto.
    /// </summary>
    public class NewGroupRequestDto
    {
        /// <summary>
        /// Initializes a new instance of the <see cref="NewGroupRequestDto"/> class.
        /// </summary>
        public NewGroupRequestDto()
        {
            GroupName = string.Empty;
        }

        /// <summary>
        /// Gets or sets the group name.
        /// </summary>
        /// <value>The name of the new group.</value>
        public string GroupName { get; set; }
    }
}