1234567891011121314151617181920212223 |
- namespace MediaBrowser.Model.SyncPlay
- {
- /// <summary>
- /// Class NewGroupRequest.
- /// </summary>
- public class NewGroupRequest
- {
- /// <summary>
- /// Initializes a new instance of the <see cref="NewGroupRequest"/> class.
- /// </summary>
- /// <param name="groupName">The name of the new group.</param>
- public NewGroupRequest(string groupName)
- {
- GroupName = groupName;
- }
- /// <summary>
- /// Gets the group name.
- /// </summary>
- /// <value>The name of the new group.</value>
- public string GroupName { get; }
- }
- }
|