8 lines
202 B
C#
8 lines
202 B
C#
namespace InternshipSystem.Repository.Model
|
|
{
|
|
public class ProgramSubject
|
|
{
|
|
public long InternshipProgramId { get; set; }
|
|
public long InternshipSubjectId { get; set; }
|
|
}
|
|
} |