system-praktyk-api/src/InternshipSystem.Core/Company.cs
mborzyszkowski 7e181f6887 refactoring
Entity class InternshipEntity name changed to Internship
namespace Internship changed to InternshipSystem
2020-07-08 18:25:49 +02:00

15 lines
402 B
C#

using System;
using System.Collections.Generic;
namespace InternshipSystem.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<BranchOffice> Branches { get; set; }
}
}