15 lines
269 B
C#
15 lines
269 B
C#
namespace Modules.User.Domain.ValueObjects;
|
|
|
|
public class AvatarId
|
|
{
|
|
public Guid Value { get; private set; }
|
|
private AvatarId() {}
|
|
|
|
public static AvatarId Create(Guid value)
|
|
{
|
|
return new ()
|
|
{
|
|
Value = value,
|
|
};
|
|
}
|
|
} |