123123
This commit is contained in:
@@ -2,8 +2,14 @@
|
||||
{
|
||||
public class BGFGStyle
|
||||
{
|
||||
public string ForegroundStyle { get; set; } = String.Empty;
|
||||
public string BackgroundStyle { get; set; } = String.Empty;
|
||||
public BGFGStyle()
|
||||
{
|
||||
ForegroundStyle = string.Empty;
|
||||
BackgroundStyle = string.Empty;
|
||||
}
|
||||
|
||||
public string ForegroundStyle { get; set; }
|
||||
public string BackgroundStyle { get; set; }
|
||||
|
||||
public BGFGStyle(string foregroundStyle, string backgroundStyle)
|
||||
{
|
||||
@@ -16,9 +22,6 @@
|
||||
return new BGFGStyle(BackgroundStyle, ForegroundStyle);
|
||||
}
|
||||
|
||||
public BGFGStyle()
|
||||
{
|
||||
}
|
||||
|
||||
public static readonly Dictionary<string, BGFGStyle> ForegroundStyles = new(StringComparer.OrdinalIgnoreCase)
|
||||
{
|
||||
@@ -67,4 +70,4 @@
|
||||
return new BGFGStyle();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user