Line data Source code
1 : #region Copyright
2 : // // -----------------------------------------------------------------------
3 : // // <copyright company="cdmdotnet Limited">
4 : // // Copyright cdmdotnet Limited. All rights reserved.
5 : // // </copyright>
6 : // // -----------------------------------------------------------------------
7 : #endregion
8 :
9 : using System;
10 :
11 : namespace Cqrs.Snapshots
12 : {
13 : public abstract class Snapshot
14 0 : {
15 : public virtual Guid Id { get; set; }
16 :
17 : public virtual int Version { get; set; }
18 : }
19 : }
|