2021-05-29 18:24:41 +00:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
2021-06-09 21:03:07 +00:00
|
|
|
|
using Retroactiune.Models;
|
2021-05-29 18:24:41 +00:00
|
|
|
|
|
2021-06-09 21:03:07 +00:00
|
|
|
|
namespace Retroactiune.DataTransferObjects
|
2021-05-29 17:02:16 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2021-06-05 13:03:12 +00:00
|
|
|
|
/// FeedbackReceiverInDto is the DTO for <see cref="FeedbackReceiver"/>, used in incoming requests.
|
2021-05-29 17:02:16 +00:00
|
|
|
|
/// </summary>
|
2021-06-05 13:03:12 +00:00
|
|
|
|
public class FeedbackReceiverInDto
|
2021-05-29 17:02:16 +00:00
|
|
|
|
{
|
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; }
|
|
|
|
|
}
|
|
|
|
|
}
|