using gehGassi.Dto.Common;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace gehGassi.Dto.DogWalkers
{
///
/// DTO für DogWalkers
///
public class DogWalkerDto : SyncEntityDto
{
///
/// Anrede / Titel
///
[MaxLength(50)]
public string Title { get; set; }
///
/// Vorname
///
[Required]
[MaxLength(150)]
public string FirstName { get; set; }
///
/// Nachname
///
[Required]
[MaxLength(150)]
public string LastName { get; set; }
///
/// Optional - Geburtstag
///
public DateTimeOffset? BirthDate { get; set; }
///
/// Optional - Foto des Benutzers
///
[MaxLength(500)]
public string Photo { get; set; }
///
/// Breitengrad der Adresse
///
public double Lat { get; set; }
///
/// Längengrad der Adresse
///
public double Lng { get; set; }
///
/// Gesperrt
///
[Required]
public bool Locked { get; set; }
///
/// Datum der Erstellung
///
public DateTimeOffset Created { get; set; }
}
}