14 lines
341 B
C#
14 lines
341 B
C#
using Core.DomainObjects;
|
|
|
|
namespace WeatherForecast.Models {
|
|
public class TestimonialModel {
|
|
public string Text { get; set; }
|
|
public ReviewerModel Reviewer { get; set; }
|
|
|
|
public TestimonialModel(Testimonial testimonial) {
|
|
Text = testimonial.Text;
|
|
Reviewer = new ReviewerModel(testimonial.Reviewer);
|
|
}
|
|
}
|
|
}
|