using Exam.Infrastructure.Data.Entity;
using System.ComponentModel;
namespace Hotline.Share.Dtos.Questions
{
///
/// 关联课件
///
[Description("关联课件")]
public class QuestionSourcewareDto:ActionRequest
{
///
/// 试题Id
///
[Description("试题Id")]
public string QuestionId { get; set; }
///
/// 课件Id
///
[Description("课件Id")]
public string SourcewareId { get; set; }
///
/// 课件
///
[Description("课件")]
public string Sourceware { get; set; }
}
}