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

10 lines
248 B
C#

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