16 lines
474 B
C#
16 lines
474 B
C#
using System;
|
|
using InternshipSystem.Core.Entity.Internship;
|
|
|
|
namespace InternshipSystem.Core
|
|
{
|
|
public class InternshipRegistration
|
|
{
|
|
public long Id { get; set; }
|
|
public Company Company { get; set; }
|
|
public BranchOffice BranchAddress { get; set; }
|
|
public DateTime Start { get; set; }
|
|
public DateTime End { get; set; }
|
|
public InternshipType Type { get; set; }
|
|
public DocumentState State { get; set; }
|
|
}
|
|
} |