change: added ending date for givaway as a timestamp tag

fixed: fixed an issue with flag translates
This commit is contained in:
Kwoth
2024-11-28 08:55:01 +00:00
parent e036a2d3c9
commit 4069368beb
4 changed files with 10 additions and 2 deletions

View File

@@ -8,6 +8,7 @@ public sealed class GiveawayModel
public ulong MessageId { get; set; }
public ulong ChannelId { get; set; }
public string Message { get; set; }
public int Winners { get; set; }
public IList<GiveawayUser> Participants { get; set; } = new List<GiveawayUser>();
public DateTime EndsAt { get; set; }