9 lines
171 B
C#
9 lines
171 B
C#
namespace QuizMaster.Response
|
|
{
|
|
internal class CategoryInfo
|
|
{
|
|
public string Category { get; set; } = "";
|
|
public int Total { get; set; }
|
|
}
|
|
}
|