StudentManager/StudentManager/Data/CursonQuestionsData.cs
2024-09-24 19:00:10 +08:00

25 lines
658 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 long UID { get; set; } = 0;
public int[] ProblemIDS { get; set; } = { };
public int[] CorrectIDS { get; set; } = { };
public DateTime DateTime { get; set; } = DateTime.Now;
public uint 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(); }
}
}