13 lines
291 B
C#
13 lines
291 B
C#
using Core.Abstractions.DomainObjects;
|
|
|
|
namespace Core.DomainObjects {
|
|
public class Image : DomainObjectBase<Image> {
|
|
public string Src { get; set; }
|
|
public string Alt { get; set; }
|
|
|
|
public override int GetHashCode() {
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|