Files
2024-09-24 14:44:06 +08:00

9 lines
197 B
C#

namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Account
{
public class UpdateIconDto
{
public string? Icon { get; set; }
public Guid? UserId { get; set; }
}
}