video/ExamRecords.cs

14 lines
243 B
C#
Raw Normal View History

2024-12-11 19:48:43 +08:00
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; }
}
}