1
0
mirror of https://github.com/akpaevj/onecmonitor.git synced 2026-06-13 21:18:17 +02:00
Files

8 lines
225 B
C#

using System.ComponentModel.DataAnnotations;
namespace OneSwiss.Server.Models;
public class TelegramBotSettings : DatabaseObject
{
[Required(AllowEmptyStrings = true)] public string Token { get; set; } = string.Empty;
}