aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.SystemInfo/SystemObjectProperty.cs
blob: c2d04e2a5b5e07fb21883f1eeaf763aff4d379c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;
using System.Collections.Generic;
using System.Text;

namespace Tango.SystemInfo
{
    public class SystemObjectProperty
    {
        public String Name { get; set; }
        public String Value { get; set; }
    }
}