17 lines
353 B
C#
17 lines
353 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Shared.DTOs
|
|||
|
{
|
|||
|
public class QuestionDto
|
|||
|
{
|
|||
|
public int ID { get; set; }
|
|||
|
public string Category { get; set; }
|
|||
|
public string Title { get; set; }
|
|||
|
public string Answer { get; set; }
|
|||
|
}
|
|||
|
}
|