using System; using System.Collections.Generic; namespace Internship.Core { public class Company { public string Nip { get; set; } public string Name { get; set; } public RangeOfActivities Range { get; set; } public Uri SiteAddress { get; set; } public int Provider { get; set; } public List Branches { get; set; } } }