24 lines
597 B
C#
24 lines
597 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StudentManager.Data
|
|
{
|
|
public class CursonQuestionsData : IDataCommon
|
|
{
|
|
public int UID { get; set; } = 0;
|
|
public int[] ProblemIDS { get; set; } = { };
|
|
public int[] CorrectIDS { get; set; } = { };
|
|
|
|
public int Lesson { get; set; } = 0;
|
|
public int TotalCount { get; set; } = 0;
|
|
public int CorrectCount { get; set; } = 0;
|
|
public int Status { get; set; } = 0;
|
|
|
|
|
|
public string TableName { get => "users"; set => throw new NotImplementedException(); }
|
|
}
|
|
}
|