You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
583 B
32 lines
583 B
using System;
|
|
|
|
namespace CellularManagement.Application.Features.Roles.Queries.GetRole;
|
|
|
|
/// <summary>
|
|
/// 获取角色响应
|
|
/// </summary>
|
|
public sealed record GetRoleResponse(
|
|
/// <summary>
|
|
/// 角色ID
|
|
/// </summary>
|
|
string Id,
|
|
|
|
/// <summary>
|
|
/// 角色名称
|
|
/// </summary>
|
|
string Name,
|
|
|
|
/// <summary>
|
|
/// 角色描述
|
|
/// </summary>
|
|
string? Description,
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
DateTime CreatedAt,
|
|
|
|
/// <summary>
|
|
/// 更新时间
|
|
/// </summary>
|
|
DateTime UpdatedAt);
|