sharp-oodb/Persistent.cs

14 lines
235 B
C#

using System;
namespace oodb
{
public abstract class Persistent
{
public Guid PersistenceID { get; internal set; }
public Persistent()
{
PersistenceID = Guid.NewGuid();
}
}
}