bonuska2/SimpleTGBot/UserPreset.cs

24 lines
570 B
C#

using System.Drawing;
namespace SimpleTGBot;
internal struct UserPreset
{
public long Id;
public long OwnerId;
public string Name;
public Color OutlineColor;
public Color TitleColor;
public Color SubtitleColor;
public static UserPreset Default() => new UserPreset()
{
Id = 0,
OwnerId = 0,
Name = "По умолчанию",
OutlineColor = Color.FromArgb(255, 255, 255, 255),
TitleColor = Color.FromArgb(255, 255, 255, 255),
SubtitleColor = Color.FromArgb(255, 255, 255, 255),
};
}