Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/22/09 14:41:27 (15 years ago)
Author:
epitzer
Message:

Namespace refactoring, visibility check (#548)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Persistence/3.3/Core/TypeMapping.cs

    r1566 r1623  
    44
    55  public class TypeMapping {
     6
    67    public readonly int Id;
    78    public readonly string TypeName;
    89    public readonly string Serializer;
     10
    911    public TypeMapping(int id, string typeName, string serializer) {
    1012      Id = id;
     
    1214      Serializer = serializer;
    1315    }
     16
    1417    public Dictionary<string, object> GetDict() {
    1518      return new Dictionary<string, object> {
     
    1821        {"serializer", Serializer}};
    1922    }
     23
    2024  }
    2125
Note: See TracChangeset for help on using the changeset viewer.