9 lines
180 B
C#
9 lines
180 B
C#
namespace GroupService.Domain.ValueObjects
|
|
{
|
|
public class UserProfile
|
|
{
|
|
public string NickName { get; set; }
|
|
public string? Avatar { get; set; }
|
|
}
|
|
}
|