using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; using gehGassi.Dto.Common; namespace gehGassi.Dto.Lookup { /// /// Lookup für App UsersDTO /// public class AppUserLookupDto : SyncEntityDto { /// /// Vorname /// public string FirstName { get; set; } /// /// Nachname /// public string LastName { get; set; } /// /// Optional - Foto des Benutzers /// public string Photo { get; set; } /// /// Typ der Entität /// public AppUserTypeDto Type { get; set; } /// /// Hinweis auf den Ort wo jemand zu Hause ist /// public string LocationHint { get; set; } /// /// Breitengrad der Adresse /// public double Lat { get; set; } /// /// Längengrad der Adresse /// public double Lng { get; set; } } }