oop_NFS_Andreas/Plattform/Plattform/Models/City.cs

22 lines
467 B
C#

using System.Runtime.Serialization;
namespace Plattform.Models
{
[DataContract]
public class City
{
[DataMember]
public int CityID { get; set; }
[DataMember]
public string Name { get; set; }
[DataMember]
public int ZipCode { get; set; }
public City() { }
public City(string name, int zipCode)
{
this.Name = name;
this.ZipCode = zipCode;
}
}
}