10 lines
235 B
C#
10 lines
235 B
C#
namespace University.DataModels.Models
|
|
{
|
|
public interface IPlanOfStudyModel : IId
|
|
{
|
|
string Profile { get; }
|
|
string FormOfStudy { get; }
|
|
Dictionary<int, IWorkerModel> Workers { get; }
|
|
}
|
|
}
|