Class CreateLocationDto
Inheritance
CreateLocationDto
Assembly: OEMS.Core.dll
Syntax
public class CreateLocationDto
Properties
Address
Declaration
[Required(ErrorMessage = "Adresse ist erforderlich")]
public string Address { get; set; }
Property Value
Capacity
Declaration
[Range(1, 10000, ErrorMessage = "Raumgröße muss zwischen 1 und 10.000 liegen")]
public int Capacity { get; set; }
Property Value
Description
Declaration
[StringLength(500, ErrorMessage = "Beschreibung darf maximal 500 Zeichen lang sein")]
public string Description { get; set; }
Property Value
GoogleSatelliteLink
Declaration
public string GoogleSatelliteLink { get; set; }
Property Value
Id
Declaration
public Guid Id { get; set; }
Property Value
Name
Declaration
[Required(ErrorMessage = "Name ist erforderlich")]
public string Name { get; set; }
Property Value
Notes
Declaration
[StringLength(500, ErrorMessage = "Notizen dürfen maximal 500 Zeichen lang sein")]
public string Notes { get; set; }
Property Value
OrganizationId
Declaration
public Guid OrganizationId { get; set; }
Property Value
Room
Declaration
[StringLength(100, ErrorMessage = "Raumname darf maximal 100 Zeichen lang sein")]
public string Room { get; set; }
Property Value