aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/SyncPlayDtos/JoinGroupRequestDto.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Api/Models/SyncPlayDtos/JoinGroupRequestDto.cs')
-rw-r--r--Jellyfin.Api/Models/SyncPlayDtos/JoinGroupRequestDto.cs19
1 files changed, 9 insertions, 10 deletions
diff --git a/Jellyfin.Api/Models/SyncPlayDtos/JoinGroupRequestDto.cs b/Jellyfin.Api/Models/SyncPlayDtos/JoinGroupRequestDto.cs
index ed97b8d6a..89ba511af 100644
--- a/Jellyfin.Api/Models/SyncPlayDtos/JoinGroupRequestDto.cs
+++ b/Jellyfin.Api/Models/SyncPlayDtos/JoinGroupRequestDto.cs
@@ -1,16 +1,15 @@
using System;
-namespace Jellyfin.Api.Models.SyncPlayDtos
+namespace Jellyfin.Api.Models.SyncPlayDtos;
+
+/// <summary>
+/// Class JoinGroupRequestDto.
+/// </summary>
+public class JoinGroupRequestDto
{
/// <summary>
- /// Class JoinGroupRequestDto.
+ /// Gets or sets the group identifier.
/// </summary>
- public class JoinGroupRequestDto
- {
- /// <summary>
- /// Gets or sets the group identifier.
- /// </summary>
- /// <value>The identifier of the group to join.</value>
- public Guid GroupId { get; set; }
- }
+ /// <value>The identifier of the group to join.</value>
+ public Guid GroupId { get; set; }
}