using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Portfolio.Domain.Features.Portfolio { public class WorkExperience { public string Title { get; set; } public string Company { get; set; } public int StartYear { get; set; } public int EndYear { get; set; } public string Details { get; set; } } }