23 lines
492 B
C#
23 lines
492 B
C#
using BaseDomain;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ChatMvc.Domain.ValueObjects
|
|
{
|
|
public class Id : AValueObject
|
|
{
|
|
public override bool GetValidationExpression()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
protected override IEnumerable<object> GetEqualityComponents()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|