source:
BMXNET_RPMS_dotNET_UTILITIES-BMX/branch/BMX41000/IHS BMX Framework/IndianHealthService.BMXNet.WinForm/Configuration/Setting.cs
Last change on this file was 1146, checked in by , 14 years ago | |
---|---|
File size: 467 bytes |
Line | |
---|---|
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.Text; |
4 | using System.Xml; |
5 | using System.Xml.Serialization; |
6 | |
7 | namespace 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.