9 lines
217 B
C#
9 lines
217 B
C#
namespace InternshipSystem.Core
|
|
{
|
|
public class InternshipProgramEntry
|
|
{
|
|
public int Id { get; set; }
|
|
public Course Course { get; set; }
|
|
public string Description { get; set; }
|
|
}
|
|
} |