ln.types/odb/IPersistent.cs

18 lines
379 B
C#

// /**
// * File: IPersistent.cs
// * Author: haraldwolff
// *
// * This file and it's content is copyrighted by the Author and / or copyright holder.
// * Any use wihtout proper permission is illegal and may lead to legal actions.
// *
// *
// **/
using System;
namespace ln.types.odb
{
public interface IPersistent
{
Guid GetPersistenceID();
}
}