16 lines
326 B
C#
Raw Normal View History

2024-04-29 14:56:29 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SchoolContracts.SearchModels
{
public class CoursesForStudySearchModel
{
public int? Id { get; set; }
public List<int>? CourseId { get; set; }
public List<int>? StudyId { get; set; }
}
}