mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
15 lines
215 B
C#
15 lines
215 B
C#
using System;
|
|
|
|
namespace OpenAuth.Domain
|
|
{
|
|
public abstract class Entity
|
|
{
|
|
public System.Guid Id { get; set; }
|
|
|
|
public Entity()
|
|
{
|
|
Id = Guid.NewGuid();
|
|
}
|
|
}
|
|
}
|