You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
475 B
16 lines
475 B
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using Infrastructure.Domain;
|
|
|
|
namespace Application.Domain.Entities
|
|
{
|
|
[Display(Name = "试卷")]
|
|
public class Paper : BaseEntity
|
|
{
|
|
[Display(Name = "名称")]
|
|
public string Name { get; set; }
|
|
|
|
public List<PaperQuestion> Questions { get; set; } = new List<PaperQuestion>();
|
|
public List<UserPaper> UserPapers { get; set; } = new List<UserPaper>();
|
|
}
|
|
} |