forked from DavidMakarov/StudentEnrollment
9 lines
154 B
C#
9 lines
154 B
C#
|
namespace StudentEnrollmentDataModels.Models
|
|||
|
{
|
|||
|
public interface ICourseModel : IId
|
|||
|
{
|
|||
|
string CourseName { get; }
|
|||
|
string FacultyName { get; }
|
|||
|
}
|
|||
|
}
|