Files
moadiran/Shared/DTOs/QuestionDto.cs

17 lines
353 B
C#
Raw Permalink Normal View History

2024-04-03 17:07:18 +03:30
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; }
}
}