9 lines
154 B
C#
Raw Normal View History

namespace StudentEnrollmentDataModels.Models
{
public interface ICourseModel : IId
{
string CourseName { get; }
string FacultyName { get; }
}
}