oop_NFS_Andreas/Plattform/Plattform/Models/Hotel.cs

17 lines
349 B
C#
Raw Normal View History

2018-08-19 14:31:58 +02:00
using System.Runtime.Serialization;
2018-08-30 21:17:16 +02:00
using Plattform.AirlineService;
2018-08-19 14:31:58 +02:00
namespace Plattform.Models
{
[DataContract]
public class Hotel
{
[DataMember]
public int HotelID { get; set; }
[DataMember]
public string Name { get; set; }
2018-08-19 14:31:58 +02:00
[DataMember]
2018-08-30 21:17:16 +02:00
public virtual City City { get; set; }
2018-08-19 14:31:58 +02:00
}
}