oop_NFS_Andreas/Plattform/Plattform/Models/RoomType.cs

19 lines
372 B
C#

using System.Runtime.Serialization;
namespace Plattform.Models
{
[DataContract]
public class RoomType
{
[DataMember]
public int RoomTypeID { get; set; }
[DataMember]
public string Name { get; set; }
public RoomType() { }
public RoomType(string name)
{
this.Name = name;
}
}
}