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 IDocumentModel : IId
|
|
|
|
|
{
|
|
|
|
|
string Name { get; }
|
|
|
|
|
DateTime Date { get; }
|
2023-04-07 13:24:39 +04:00
|
|
|
|
int UserId { get; }
|
2023-04-08 20:16:42 +04:00
|
|
|
|
Dictionary <int, IStudentModel> StudentDocument { get; }
|
2023-04-04 13:43:06 +04:00
|
|
|
|
}
|
|
|
|
|
}
|