Filtration/Filtration.ObjectModel/ReplaceColorsParameterSet.cs

18 lines
589 B
C#
Raw Permalink Normal View History

2015-06-06 15:44:38 -04:00
using System.Windows.Media;
2015-06-24 14:57:16 -04:00
namespace Filtration.ObjectModel
2015-06-06 15:44:38 -04:00
{
2015-06-24 14:57:16 -04:00
public class ReplaceColorsParameterSet
2015-06-06 15:44:38 -04:00
{
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; }
}
}