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; }
|
2024-05-29 02:49:07 +04:00
|
|
|
|
public int? UserId { get; set; }
|
|
|
|
|
public int StudentId { get; set; }
|
2024-04-18 19:35:33 +04:00
|
|
|
|
}
|
|
|
|
|
}
|