Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/Classes/AddOrUpdateLearningOfficeDt...

16 lines
356 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.Classes
{
public class AddOrUpdateLearningOfficeDto
{
public long UserId { get; set; }
public long ClassesId { get; set; }
public long SchoolId { get; set; }
}
}