22 lines
402 B
C#
Raw Normal View History

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; }
//ФИО
string FCs { get; }
2023-10-20 23:13:02 +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
}
}