using Core.Abstractions.DomainObjects; namespace Core.DomainObjects { public class Image : DomainObjectBase { public string Src { get; set; } public string Alt { get; set; } public override int GetHashCode() { throw new NotImplementedException(); } } }