mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-30 12:47:59 +08:00
15 lines
221 B
C#
15 lines
221 B
C#
using System;
|
|
|
|
namespace OpenAuth.Domain
|
|
{
|
|
public abstract class Entity
|
|
{
|
|
public string Id { get; set; }
|
|
|
|
public Entity()
|
|
{
|
|
Id = Guid.NewGuid().ToString();
|
|
}
|
|
}
|
|
}
|