This repository has been archived on 2020-04-03. You can view files and clone it, but cannot push or open issues or pull requests.
ibz/oop/NormfallStudie/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;
}
}
}