Search Results for

    Show / Hide Table of Contents

    Class CreateLocationDto

    Inheritance
    object
    CreateLocationDto
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: OEMS.Core.Application.DTOs.Location
    Assembly: OEMS.Core.dll
    Syntax
    public class CreateLocationDto

    Properties

    Address

    Declaration
    [Required(ErrorMessage = "Adresse ist erforderlich")]
    public string Address { get; set; }
    Property Value
    Type Description
    string

    Capacity

    Declaration
    [Range(1, 10000, ErrorMessage = "Raumgröße muss zwischen 1 und 10.000 liegen")]
    public int Capacity { get; set; }
    Property Value
    Type Description
    int

    Description

    Declaration
    [StringLength(500, ErrorMessage = "Beschreibung darf maximal 500 Zeichen lang sein")]
    public string Description { get; set; }
    Property Value
    Type Description
    string

    GoogleSatelliteLink

    Declaration
    public string GoogleSatelliteLink { get; set; }
    Property Value
    Type Description
    string

    Id

    Declaration
    public Guid Id { get; set; }
    Property Value
    Type Description
    Guid

    Name

    Declaration
    [Required(ErrorMessage = "Name ist erforderlich")]
    public string Name { get; set; }
    Property Value
    Type Description
    string

    Notes

    Declaration
    [StringLength(500, ErrorMessage = "Notizen dürfen maximal 500 Zeichen lang sein")]
    public string Notes { get; set; }
    Property Value
    Type Description
    string

    OrganizationId

    Declaration
    public Guid OrganizationId { get; set; }
    Property Value
    Type Description
    Guid

    Room

    Declaration
    [StringLength(100, ErrorMessage = "Raumname darf maximal 100 Zeichen lang sein")]
    public string Room { get; set; }
    Property Value
    Type Description
    string
    In this article
    Back to top Generated by DocFX