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; } } }