sharp-oodb/Persistent.cs

14 lines
235 B
C#
Raw Normal View History

2018-10-16 21:03:23 +02:00
using System;
namespace oodb
{
public abstract class Persistent
{
public Guid PersistenceID { get; internal set; }
public Persistent()
{
PersistenceID = Guid.NewGuid();
}
}
}