22 lines
417 B
C#
22 lines
417 B
C#
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; }
|
|
|
|
//ФИО
|
|
List<string> FCs { get; }
|
|
|
|
List<string> Disciplines { get; }
|
|
|
|
//Вопросы по лабораторной
|
|
string[] Questions { get; }
|
|
}
|
|
}
|