This commit is contained in:
yubaolee
2017-01-12 19:16:37 +08:00
parent ccf1269eca
commit 21b37f77cf
270 changed files with 1935 additions and 5907 deletions

View File

@@ -0,0 +1,14 @@
using System;
namespace OpenAuth.Domain
{
public abstract class Entity
{
public System.Guid Id { get; set; }
public Entity()
{
Id = Guid.NewGuid();
}
}
}