CourseWork/University/UniversityContracts/SearchModels/PlanOfStudySearchModel.cs

15 lines
301 B
C#
Raw Normal View History

2024-04-18 19:35:33 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UniversityContracts.SearchModels
{
public class PlanOfStudySearchModel
{
public int? Id { get; set; }
public string? Profile { get; set; }
}
}