Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/XmlString.cs @ 1564

Last change on this file since 1564 was 1564, checked in by epitzer, 15 years ago

Stronger typing for formatters with the help of generics. Separate format and serial data type. (#548)

File size: 319 bytes
Line 
1using HeuristicLab.Persistence.Interfaces;
2using HeuristicLab.Persistence.Core;
3
4namespace HeuristicLab.Persistence.Default.Xml {
5 
6  public class XmlString : ISerialData {
7
8    [Storable]
9    public string Data { get; private set; }
10
11    public XmlString(string data) {
12      Data = data;
13    }
14  }
15}
Note: See TracBrowser for help on using the repository browser.