14 lines
370 B
C#
14 lines
370 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Internship.Core
|
|
{
|
|
public class Edition
|
|
{
|
|
public int Id { get; set; }
|
|
public DateTime StartDate { get; set; }
|
|
public DateTime EndDate { get; set; }
|
|
public DateTime IPPDeadlineDate { get; set; }
|
|
public List<InternshipProgramSubject> Subjects { get; set;}
|
|
}
|
|
} |