video/ExamRecords.cs
2024-12-11 19:48:43 +08:00

14 lines
243 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace videoGather
{
internal class ExamRecords
{
public List<ExamRecord> Records { get; set; }
}
}