20 lines
371 B
C#
20 lines
371 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Song.Entities
|
|
{
|
|
public partial class Examination : WeiSha.Data.Entity
|
|
{
|
|
public TestPaper Paper;
|
|
public string SubjectPath;
|
|
|
|
public string GroupName;
|
|
|
|
public List<Examination> ExaminationList;
|
|
|
|
}
|
|
}
|