PIbd-21_Pyatakov_KM_Markov_.../UniversityContracts/SearchModels/StudentSearchModel.cs

15 lines
293 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UniversityContracts.SearchModels
{
public class StudentSearchModel
{
public int? Id { get; set; }
public int? UserId { get; set; }
}
}