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