18 lines
427 B
C#
18 lines
427 B
C#
using Core.Abstractions.DomainObjects;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Core.DomainObjects {
|
|
public class Testimonial : DomainObjectBase<Testimonial> {
|
|
public string Text { get; set; }
|
|
public Reviewer Reviewer { get; set; }
|
|
|
|
public override int GetHashCode() {
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|