15 lines
300 B
C#
15 lines
300 B
C#
namespace OF_DL.Gui.ViewModels;
|
|
|
|
public sealed class FileNameFormatSegmentViewModel
|
|
{
|
|
public FileNameFormatSegmentViewModel(string text, string foreground)
|
|
{
|
|
Text = text;
|
|
Foreground = foreground;
|
|
}
|
|
|
|
public string Text { get; }
|
|
|
|
public string Foreground { get; }
|
|
}
|