11 lines
287 B
C#
11 lines
287 B
C#
|
using Retroactiune.Models;
|
|||
|
|
|||
|
namespace Retroactiune.DataTransferObjects
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// FeedbackReceiverDto is the DTO for <see cref="FeedbackReceiver"/>, used in outgoing requests.
|
|||
|
/// </summary>
|
|||
|
public class FeedbackReceiverOutDto : FeedbackReceiver
|
|||
|
{
|
|||
|
}
|
|||
|
}
|