system-praktyk-api/src/InternshipSystem.Core/Edition.cs

15 lines
432 B
C#

using System;
using System.Collections.Generic;
namespace InternshipSystem.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<InternshipProgramEntry> Subjects { get; set;}
public List<Internship> Internships { get; set; }
}
}