using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Threading.Tasks; namespace GoodTimes.Models { public class BonRegel { public int Id { get; set; } public DateTime Tijd { get; set; } [DataType(DataType.MultilineText)] public string Omschrijving { get; set; } public int Aantal { get; set; } public double Prijs { get; set; } public double Btw { get; set; } public double Subtotaal { get; set; } public int BonId { get; set; } public Bon Bon { get; set; } public int BestellingId { get; set; } public Bestelling Bestelling { 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