mirror of
https://github.com/NoiTheCat/WorldTime.git
synced 2024-11-21 14:34:36 +00:00
Noi
b5b7725df1
With some exceptions: for the sake of transparency, positive confirmations of moderator commands will still always be shown.
11 lines
No EOL
249 B
C#
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; }
|
|
} |