24 lines
No EOL
672 B
C#
24 lines
No EOL
672 B
C#
using System.Collections.Generic;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace SVGLDLibs.Models
|
|
{
|
|
[DataContract]
|
|
public class HistoryState
|
|
{
|
|
[DataMember(EmitDefaultValue = false)]
|
|
public string lastAction;
|
|
|
|
[DataMember(EmitDefaultValue = false)]
|
|
public string mainContainer;
|
|
|
|
[DataMember(EmitDefaultValue = false)]
|
|
public Dictionary<string, ContainerModel> containers;
|
|
|
|
[DataMember(EmitDefaultValue = false)]
|
|
public Dictionary<string, string> typeCounters;
|
|
|
|
[DataMember(EmitDefaultValue = false)]
|
|
public Dictionary<string, SymbolModel> symbols;
|
|
}
|
|
} |