2021-05-29 18:24:41 +00:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
namespace Retroactiune.Models
|
2021-05-29 17:02:16 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// FeedbackReceiverDto is the DTO for <see cref="FeedbackReceiver"/>
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class FeedbackReceiverDto
|
|
|
|
|
{
|
2021-05-29 18:24:41 +00:00
|
|
|
|
[Required]
|
2021-05-29 17:02:16 +00:00
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
2021-05-29 18:24:41 +00:00
|
|
|
|
[Required]
|
2021-05-29 17:02:16 +00:00
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|