irc-netcore-api/IRaCIS.Core.Infra.EFCore/Common/Dto/AnswerDto.cs

14 lines
271 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace IRaCIS.Core.Infra.EFCore.Common.Dto
{
public class AnswerDto
{
public string QuestionName { get; set; }
public string Answer { get; set; }
}
}