hermes-socket-library/Requests/Messages/GroupPermission.cs

10 lines
261 B
C#
Raw Permalink Normal View History

namespace HermesSocketLibrary.Requests.Messages
{
public class GroupPermission
{
public string Id { get; set; }
public string GroupId { get; set; }
public string Path { get; set; }
public bool? Allow { get; set; }
}
}