jellyfin/Jellyfin.Api/Models/SyncPlayDtos/NewGroupRequestDto.cs

22 lines
504 B
C#
Raw Normal View History

2023-01-31 12:18:10 +01:00
namespace Jellyfin.Api.Models.SyncPlayDtos;
/// <summary>
/// Class NewGroupRequestDto.
/// </summary>
public class NewGroupRequestDto
{
/// <summary>
2023-01-31 12:18:10 +01:00
/// Initializes a new instance of the <see cref="NewGroupRequestDto"/> class.
/// </summary>
2023-01-31 12:18:10 +01:00
public NewGroupRequestDto()
{
2023-01-31 12:18:10 +01:00
GroupName = string.Empty;
}
2023-01-31 12:18:10 +01:00
/// <summary>
/// Gets or sets the group name.
/// </summary>
/// <value>The name of the new group.</value>
public string GroupName { get; set; }
}