WorldTime/Data/GuildConfiguration.cs
Noi b5b7725df1 Add setting to allow private confirmation of commands
With some exceptions: for the sake of transparency, positive
confirmations of moderator commands will still always be shown.
2023-09-09 11:43:52 -07:00

11 lines
No EOL
249 B
C#

using System.ComponentModel.DataAnnotations;
namespace WorldTime.Data;
public class GuildConfiguration {
[Key]
public ulong GuildId { get; set; }
public bool Use12HourTime { get; set; }
public bool EphemeralConfirm { get; set; }
}