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