This commit is contained in:
mmrbnjd
2024-04-03 17:07:18 +03:30
parent 8e8bffa8a8
commit 0c470ce763
7 changed files with 131 additions and 5 deletions

View File

@@ -0,0 +1,16 @@
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; }
}
}