CourseWork/University/UniversityContracts/SearchModels/AttestationSearchModel.cs

15 lines
300 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 AttestationSearchModel
{
public int? Id { get; set; }
public int? StudentId { get; set; }
2024-04-18 19:35:33 +04:00
}
}