Filtration/Filtration/Models/ReplaceColorsParameterSet.cs

18 lines
586 B
C#
Raw Normal View History

2015-06-06 20:44:38 +01:00
using System.Windows.Media;
namespace Filtration.Models
{
internal class ReplaceColorsParameterSet
{
public Color OldTextColor { get; set; }
public Color NewTextColor { get; set; }
public Color OldBackgroundColor { get; set; }
public Color NewBackgroundColor { get; set; }
public Color OldBorderColor { get; set; }
public Color NewBorderColor { get; set; }
public bool ReplaceTextColor { get; set; }
public bool ReplaceBackgroundColor { get; set; }
public bool ReplaceBorderColor { get; set; }
}
}