vassago/Models/PermissionSettings.cs

17 lines
508 B
C#
Raw Normal View History

2023-06-01 00:03:23 -04:00
namespace vassago.Models;
using System;
2023-06-05 14:55:48 -04:00
using System.ComponentModel.DataAnnotations.Schema;
2023-06-01 00:03:23 -04:00
public class PermissionSettings
{
2023-06-05 14:55:48 -04:00
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
2023-06-01 00:03:23 -04:00
public int Id { get; set; }
public ulong? MaxAttachmentBytes { get; set; }
2023-06-01 00:03:23 -04:00
public uint? MaxTextChars { get; set; }
public bool? LinksAllowed { get; set; }
2023-06-19 11:03:06 -04:00
public bool? ReactionsPossible { get; set; }
2023-06-01 00:03:23 -04:00
public int? LewdnessFilterLevel { get; set; }
public int? MeannessFilterLevel { get; set; }
}