11 lines
211 B
C#
11 lines
211 B
C#
using System;
|
|
using Volo.Abp.Content;
|
|
|
|
namespace Sozsoft.Platform.Identity.Dto;
|
|
|
|
public class UserAvatarUpdateInput
|
|
{
|
|
public Guid UserId { get; set; }
|
|
|
|
public IRemoteStreamContent Avatar { get; set; }
|
|
}
|