14 lines
278 B
C#
14 lines
278 B
C#
namespace HellionChat.Themes;
|
|
|
|
public sealed record Theme(
|
|
string Slug,
|
|
string Name,
|
|
string Author,
|
|
string Description,
|
|
ThemeColors Colors,
|
|
ThemeLayout Layout,
|
|
ThemeTypography Typography,
|
|
bool IsBuiltIn,
|
|
ThemeChatColors? ChatColors = null
|
|
);
|