Changes:
Database Migration, Repositories, Automapper, Logger, StaticFiles
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user