Merge branch 'master' of http://git.kadet.net/system-praktyk/system-praktyk-api into feat/improve_model change model according to request, add Ids ide configuration changes, add postgre to compose Co-authored-by: Maxchil <m.w.bohdanowicz@gmail.com>
15 lines
396 B
C#
15 lines
396 B
C#
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<BranchOffice> Branches { get; set; }
|
|
}
|
|
} |