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