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; } } }