Files

8 lines
176 B
C#
Raw Permalink Normal View History

2023-12-11 09:55:12 +08:00
namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Account
{
public class RestPasswordDto
{
public string Password { get; set; } = string.Empty;
}
}