11 lines
329 B
C#
11 lines
329 B
C#
namespace HermesSocketLibrary.Requests.Messages
|
|
{
|
|
public class GroupPermission
|
|
{
|
|
public required string Id { get; set; }
|
|
public required string UserId { get; set; }
|
|
public Guid GroupId { get; set; }
|
|
public required string Path { get; set; }
|
|
public bool? Allow { get; set; }
|
|
}
|
|
} |