namespace InternshipSystem.Core
{
    public class BranchOffice
    {
        public int Id { get; set; }
        public Address Address { get; set; }
        public Company Company { get; set; }
        public int Provider { get; set; }
    }
}