20 lines
452 B
C#
20 lines
452 B
C#
namespace PortBlog.API.Models
|
|
{
|
|
public class AcademicDto
|
|
{
|
|
public int AcademicId { get; set; }
|
|
|
|
public string Institution { get; set; } = string.Empty;
|
|
|
|
public int StartYear { get; set; }
|
|
|
|
public int EndYear { get; set; }
|
|
|
|
public string Period { get; set; } = string.Empty;
|
|
|
|
public string Degree { get; set; } = string.Empty;
|
|
|
|
public string? DegreeSpecialization { get; set; }
|
|
}
|
|
}
|