diff --git a/UPBot Code/DataClasses/TagBase.cs b/UPBot Code/DataClasses/TagBase.cs index d3734e1..dbdeee3 100644 --- a/UPBot Code/DataClasses/TagBase.cs +++ b/UPBot Code/DataClasses/TagBase.cs @@ -1,36 +1,33 @@ using System; -namespace UPBot { - public class TagBase : Entity { - [Key] public ulong Guild; - [Key] public string Topic; - public string Alias1; - public string Alias2; - public string Alias3; - [Comment] public string Information; - public string Author; - public long ColorOfTheme; - public DateTime timeOfCreation; - public string thumbnailLink; - public string AuthorIcon; - public string imageLink; +public class TagBase : Entity { + [Key] public ulong Guild; + [Key] public string Topic; + public string Alias1; + public string Alias2; + public string Alias3; + [Comment] public string Information; + public string Author; + public long ColorOfTheme; + public DateTime timeOfCreation; + public string thumbnailLink; + public string AuthorIcon; + public string imageLink; - public TagBase() { } + public TagBase() { } - public TagBase(ulong guild, string topic, string info, string author, string authorIcon, int colorOfTheme, DateTime time, string thumbnailLink, string imageLink) { - Guild = guild; - Topic = topic; - Alias1 = null; - Alias2 = null; - Alias3 = null; - Information = info; - Author = author; - AuthorIcon = authorIcon; - ColorOfTheme = colorOfTheme; - timeOfCreation = time; - this.thumbnailLink = thumbnailLink; - this.imageLink = imageLink; - } + public TagBase(ulong guild, string topic, string info, string author, string authorIcon, int colorOfTheme, DateTime time, string thumbnailLink, string imageLink) { + Guild = guild; + Topic = topic; + Alias1 = null; + Alias2 = null; + Alias3 = null; + Information = info; + Author = author; + AuthorIcon = authorIcon; + ColorOfTheme = colorOfTheme; + timeOfCreation = time; + this.thumbnailLink = thumbnailLink; + this.imageLink = imageLink; } - -} \ No newline at end of file +} diff --git a/UPBot Code/Utils.cs b/UPBot Code/Utils.cs index fd5f6e3..8fad022 100644 --- a/UPBot Code/Utils.cs +++ b/UPBot Code/Utils.cs @@ -37,7 +37,7 @@ private class LogInfo { readonly private static Dictionary logs = new(); public static string GetVersion() { - return vmajor + "." + vminor + "." + vbuild + vrev + " - 2022/07/25"; + return vmajor + "." + vminor + "." + vbuild + vrev + " - 2022/07/26"; } public static DiscordClient GetClient() {