10 lines
170 B
C#
10 lines
170 B
C#
namespace StudentEnrollmentDataModels.Models
|
|
{
|
|
public interface ICourseModel //: IId
|
|
{
|
|
int course_id { get; }
|
|
string name { get; }
|
|
int facultyid { get; }
|
|
}
|
|
}
|