2023-04-04 13:43:06 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace UniversityModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface IEducationStatusModel : IId
|
|
|
|
|
{
|
|
|
|
|
string Name { get; }
|
2023-04-07 13:24:39 +04:00
|
|
|
|
int UserId { get; }
|
2023-04-04 13:43:06 +04:00
|
|
|
|
}
|
|
|
|
|
}
|