LSFE/LSFE.Infrastructure/Dto/RoleDto.cs
2026-07-30 10:31:04 +08:00

15 lines
285 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LSFE.Infrastructure.Dto
{
public class RoleDto
{
public string? RoleId { get; set; }
public string? RoleName { get; set; }
}
}