mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-06-20 10:48:15 +08:00
wip: 🧠 初步的框架
This commit is contained in:
@ -0,0 +1,17 @@
|
||||
namespace NetAdmin.Domain.DbMaps.Dependency.Fields;
|
||||
|
||||
/// <summary>
|
||||
/// 更新用户字段接口
|
||||
/// </summary>
|
||||
public interface IFieldModifiedUser
|
||||
{
|
||||
/// <summary>
|
||||
/// 修改者编号
|
||||
/// </summary>
|
||||
long? ModifiedUserId { get; init; }
|
||||
|
||||
/// <summary>
|
||||
/// 修改者用户名
|
||||
/// </summary>
|
||||
string ModifiedUserName { get; init; }
|
||||
}
|
Reference in New Issue
Block a user