Files

9 lines
197 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 UpdateIconDto
{
public string? Icon { get; set; }
2024-09-24 14:44:06 +08:00
public Guid? UserId { get; set; }
2023-12-11 09:55:12 +08:00
}
}