2023-10-20 23:13:02 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace DataModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface ILabWork : IId
|
|
|
|
|
{
|
|
|
|
|
string Theme { get; }
|
|
|
|
|
|
|
|
|
|
//ФИО
|
2023-10-23 16:21:36 +04:00
|
|
|
|
string FCs { get; }
|
2023-10-20 23:13:02 +04:00
|
|
|
|
|
2023-10-23 16:21:36 +04:00
|
|
|
|
string Discipline { get; }
|
2023-10-20 23:13:02 +04:00
|
|
|
|
|
|
|
|
|
//Вопросы по лабораторной
|
2023-10-23 16:47:58 +04:00
|
|
|
|
string Questions { get; }
|
2023-10-20 23:13:02 +04:00
|
|
|
|
}
|
|
|
|
|
}
|