also hotfix

This commit is contained in:
Дмитрий Шиманский
2023-11-16 20:04:25 +03:00
parent b675e8b77b
commit 1c48750d87
4 changed files with 32 additions and 10 deletions

View File

@@ -1,5 +1,6 @@
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
using DiscordApp.Types;
namespace DiscordApp.Database.Tables
{
@@ -9,6 +10,6 @@ namespace DiscordApp.Database.Tables
[Key]
public string Id { get; set; }
public string url { get; set; }
public RedirectType RedirectType { get; set; } = RedirectType.None;
}
}