StudentManager/StudentManager/Data/UserQuestionData.cs
wangxiner55 fe9c8a3f0c 1
2024-09-12 21:12:58 +08:00

17 lines
359 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StudentManager.Data
{
public class UserQuestionData : IDataCommon
{
public int PID { get; set; } = 0;
public int ErrorCount { get; set; } = 0;
public int CorrectCount { get; set; } = 0;
public bool Status = false;
}
}