10 lines
261 B
C#
10 lines
261 B
C#
|
namespace TwitchChatTTS.Chat.Groups.Permissions
|
||
|
{
|
||
|
public class GroupPermission
|
||
|
{
|
||
|
public string Id { get; set; }
|
||
|
public string GroupId { get; set; }
|
||
|
public string Path { get; set; }
|
||
|
public bool? Allow { get; set; }
|
||
|
}
|
||
|
}
|