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