16 lines
No EOL
370 B
C#
16 lines
No EOL
370 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Retroactiune.Models
|
|
{
|
|
/// <summary>
|
|
/// FeedbackReceiverDto is the DTO for <see cref="FeedbackReceiver"/>
|
|
/// </summary>
|
|
public class FeedbackReceiverDto
|
|
{
|
|
[Required]
|
|
public string Name { get; set; }
|
|
|
|
[Required]
|
|
public string Description { get; set; }
|
|
}
|
|
} |