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; } }