using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.ClassSub
{
public class ClassSubRequest
{
///
/// 班级id
///
public long Class_id { get; set; } = 0;
///
/// 科目id
///
public long Sub_id { get; set; } = 0;
}
}