Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Persistence/3.3/Interfaces/Tokens/PrimitiveToken.cs @ 1542

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

Numerous small changes, coding conventions, renames, mini refactoring (#548)

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