2023-10-20 23:13:02 +04:00

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; }
}
}