mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-05-04 20:12:51 +08:00
17 lines
395 B
C#
17 lines
395 B
C#
namespace NetAdmin.Domain.DbMaps.Dependency.Fields;
|
|
|
|
/// <summary>
|
|
/// 创建者客户端字段接口
|
|
/// </summary>
|
|
public interface IFieldCreatedClient
|
|
{
|
|
/// <summary>
|
|
/// 创建者客户端IP
|
|
/// </summary>
|
|
int? CreatedClientIp { get; init; }
|
|
|
|
/// <summary>
|
|
/// 创建者客户端用户代理
|
|
/// </summary>
|
|
string CreatedUserAgent { get; init; }
|
|
} |