vassago/Models/PermissionSettings.cs

13 lines
347 B
C#
Raw Permalink Normal View History

2023-06-01 00:03:23 -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; }
}