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

11 lines
295 B
C#

namespace InternshipSystem.Core
{
public class Address
{
public string Street { get; set; }
public string Building { get; set; }
public string City { get; set; }
public string PostalCode { get; set; }
public string Country { get; set; }
}
}