33 lines
764 B
C#
33 lines
764 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Text;
|
|
|
|
namespace gehGassi.Dto.Common
|
|
{
|
|
/// <summary>
|
|
/// Repräsentiert Kontakt-Daten Minimalversion
|
|
/// </summary>
|
|
public class ContactMinDto
|
|
{
|
|
/// <summary>
|
|
/// Email-Adresse der Kontaktperson
|
|
/// </summary>
|
|
[Required]
|
|
[MaxLength(255)]
|
|
public string Email { get; set; }
|
|
|
|
/// <summary>
|
|
/// Optinale Telefonnummer (Festnetz)
|
|
/// </summary>
|
|
[MaxLength(100)]
|
|
public string Phone { get; set; }
|
|
|
|
/// <summary>
|
|
/// Optinale Handy-Nummer
|
|
/// </summary>
|
|
[MaxLength(100)]
|
|
public string Mobile { get; set; }
|
|
}
|
|
}
|