10 lines
200 B
C#
10 lines
200 B
C#
namespace UniversityDataModels.Models
|
|
{
|
|
public interface IPlanOfStudyModel : IId
|
|
{
|
|
string Profile { get; }
|
|
string FormOfStudy { get; }
|
|
int WorkerId { get; }
|
|
}
|
|
}
|