vassago/Models/PermissionSettings.cs
Adam R Grey 3031779e24
All checks were successful
greyn/vassago/pipeline/head This commit looks good
gitea/vassago/pipeline/head This commit looks good
gitea.arg.rip/vassago/pipeline/head This commit looks good
fork: vassago
2023-06-01 00:03:23 -04:00

13 lines
347 B
C#

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; }
}