ChatMVC/Chat.Domain/ValueObjects/Id.cs
2025-01-25 10:41:37 -03:00

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();
}
}
}