Files
moadiran/Shared/DTOs/QuestionDto.cs
mmrbnjd 0c470ce763 ...
2024-04-03 17:07:18 +03:30

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; }
}
}