Entity class InternshipEntity name changed to Internship namespace Internship changed to InternshipSystem
11 lines
295 B
C#
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; }
|
|
}
|
|
} |