11 lines
350 B
C#
11 lines
350 B
C#
namespace BCards.Web.Configuration
|
|
{
|
|
public class ModerationSettings
|
|
{
|
|
public Dictionary<string, TimeSpan> PriorityTimeframes { get; set; } = new();
|
|
public int MaxAttempts { get; set; } = 3;
|
|
public string ModeratorEmail { get; set; } = "";
|
|
public List<string> ModeratorEmails { get; set; } = new();
|
|
}
|
|
}
|