system-praktyk-api/src/Internship.Core/Company.cs
maxchil d234246248 improve model based on IPP form and add ids to entities ()
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>
2020-06-12 16:51:28 +02:00

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; }
}
}