Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Persistence/3.3/Core/Tokens/PrimitiveToken.cs @ 1615

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

Format white space. (Ctrl-K, Ctrl-D) (#548)

File size: 461 bytes
Line 
1using HeuristicLab.Persistence.Interfaces;
2
3namespace HeuristicLab.Persistence.Core.Tokens {
4
5  public class PrimitiveToken : SerializationTokenBase {
6    public readonly int TypeId;
7    public readonly int? Id;
8    public readonly ISerialData SerialData;
9    public PrimitiveToken(string name, int typeId, int? id, ISerialData serialData)
10      : base(name) {
11      TypeId = typeId;
12      Id = id;
13      SerialData = serialData;
14    }
15  }
16
17}
Note: See TracBrowser for help on using the repository browser.