source:
trunk/sources/HeuristicLab.Persistence/3.3/Core/Tokens/PrimitiveToken.cs
@
2636
Last change on this file since 2636 was 1566, checked in by epitzer, 16 years ago | |
---|---|
File size: 461 bytes |
Line | |
---|---|
1 | using HeuristicLab.Persistence.Interfaces; |
2 | |
3 | namespace 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.