From 7d5c92876b06d23e2278d3a18bcfca048e361bd3 Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Thu, 23 Aug 2018 22:38:47 +0200 Subject: [PATCH] Change data type of hotel name to string --- Plattform/Plattform/Models/Hotel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plattform/Plattform/Models/Hotel.cs b/Plattform/Plattform/Models/Hotel.cs index ead9087..1faf5e4 100644 --- a/Plattform/Plattform/Models/Hotel.cs +++ b/Plattform/Plattform/Models/Hotel.cs @@ -8,7 +8,7 @@ namespace Plattform.Models [DataMember] public int HotelID { get; set; } [DataMember] - public int Name { get; set; } + public string Name { get; set; } [DataMember] public virtual City City { get; set; } }