This repository has been archived on 2023-06-01. You can view files and clone it, but cannot push or open issues or pull requests.
discord-bot-shtik/Models/PermissionSettings.cs

13 lines
347 B
C#
Raw Normal View History

2023-06-01 00:01:28 -04:00
namespace vassago.Models;
using System;
public class PermissionSettings
{
public int Id { get; set; }
public uint? MaxAttachmentBytes { get; set; }
public uint? MaxTextChars { get; set; }
public bool? LinksAllowed { get; set; }
public int? LewdnessFilterLevel { get; set; }
public int? MeannessFilterLevel { get; set; }
}