mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-06-19 18:28:17 +08:00
17 lines
371 B
C#
17 lines
371 B
C#
namespace NetAdmin.Domain.DbMaps.Dependency.Fields;
|
|
|
|
/// <summary>
|
|
/// 更新用户字段接口
|
|
/// </summary>
|
|
public interface IFieldModifiedUser
|
|
{
|
|
/// <summary>
|
|
/// 修改者编号
|
|
/// </summary>
|
|
long? ModifiedUserId { get; init; }
|
|
|
|
/// <summary>
|
|
/// 修改者用户名
|
|
/// </summary>
|
|
string ModifiedUserName { get; init; }
|
|
} |