aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/SystemInfo/ISystemInfoService.cs
blob: 47ea7bd4bf377a583cf32a52a28a5b81104ed2ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.PPC.Common.SystemInfo
{
    /// <summary>
    /// Represents a PPC system information service.
    /// </summary>
    /// <seealso cref="Tango.PPC.Common.IPPCService" />
    public interface ISystemInfoService : IPPCService
    {
        
    }
}
OnProperty); } set { SetValue(OnProperty, value); } } public static readonly DependencyProperty OnProperty = DependencyProperty.Register("On", typeof(bool), typeof(VULed), new PropertyMetadata(false)); public Brush Brush { get { return (Brush)GetValue(BrushProperty); } set { SetValue(BrushProperty, value); } } public static readonly DependencyProperty BrushProperty = DependencyProperty.Register("Brush", typeof(Brush), typeof(VULed), new PropertyMetadata(Brushes.Red)); } }