using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Threading.Tasks; namespace GoodTimes.Models { public class Reserveren { public int Id { get; set; } [Required] public string Klant { get; set; } [DataType(DataType.EmailAddress)] public string Email { get; set; } [DataType(DataType.PhoneNumber)] public string Telefoonnummer { get; set; } [Required] public int Aantalpersonen { get; set; } [Required] [DataType(DataType.Date)] public DateTime Datum { get; set; } [Required] [DataType(DataType.Time)] public DateTime Begintijd { get; set; } [Required] [DataType(DataType.Time)] public DateTime Eindtijd { get; set; } [DataType(DataType.MultilineText)] public string Opmerkingen { get; set; } public string Medewerker { get; set; } public DateTime AanmaakDatum { get; set; } } }
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter