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