mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-05-04 20:12:51 +08:00
11 lines
331 B
C#
11 lines
331 B
C#
namespace NetAdmin.Domain.Dto.Sys.SiteMsgRole;
|
|
|
|
/// <summary>
|
|
/// 请求:查询站内信-角色映射
|
|
/// </summary>
|
|
public sealed record QuerySiteMsgRoleReq : Sys_SiteMsgRole
|
|
{
|
|
/// <inheritdoc cref="EntityBase{T}.Id" />
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
|
|
public override long Id { get; init; }
|
|
} |