mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-11-08 18:34:44 +08:00
这是有史以来最艰难的一次提交,不生则死!
This commit is contained in:
14
OpenAuth.Repository/Domain/Entity.cs
Normal file
14
OpenAuth.Repository/Domain/Entity.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
|
||||
namespace OpenAuth.Domain
|
||||
{
|
||||
public abstract class Entity
|
||||
{
|
||||
public string Id { get; set; }
|
||||
|
||||
public Entity()
|
||||
{
|
||||
Id = Guid.NewGuid().ToString();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user