using System; using Volo.Abp.Content; namespace Sozsoft.Platform.Identity.Dto; public class UserAvatarUpdateInput { public Guid UserId { get; set; } public IRemoteStreamContent Avatar { get; set; } }