source: BMXNET_RPMS_dotNET_UTILITIES-BMX/branch/IHS BMX Framework/IndianHealthService.BMXNet.WinForm/Configuration/Setting.cs@ 1146

Last change on this file since 1146 was 1146, checked in by Sam Habiel, 13 years ago

Initial Import of BMX4

File size: 467 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4using System.Xml;
5using System.Xml.Serialization;
6
7namespace IndianHealthService.BMXNet.WinForm.Configuration
8{
9
10 [Serializable]
11 internal class Setting
12 {
13 [XmlAttribute()]
14 public String Name { get; set; }
15 [XmlAttribute()]
16 public String Value { get; set; }
17 [XmlAttribute()]
18 public bool IsPersistent { get; set; }
19 }
20}
Note: See TracBrowser for help on using the repository browser.