PIbd-21_Pyatakov_KM_Markov_.../UniversityModels/Models/IDocumentModel.cs

17 lines
365 B
C#
Raw Normal View History

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; }
int UserId { get; }
2023-04-08 20:16:42 +04:00
Dictionary <int, IStudentModel> StudentDocument { get; }
}
}