18 lines
435 B
C#
18 lines
435 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Media;
|
|
|
|
namespace Capture
|
|
{
|
|
public class OptionContext
|
|
{
|
|
public int ButtonHeight { get; set; } = 20;
|
|
public int CloseButtonWidth { get; set; } = 20;
|
|
public Brush FrameColor { get; set; } = Brushes.Red;
|
|
public int FrameThickness { get; set; } = 2;
|
|
}
|
|
}
|