| 1234567891011121314151617181920212223242526272829303132333435 |
- namespace BlazorWeb1.Models
- {
- public class PizzaSpecial
- {
- public int Id { get; set; }
- public string Name { get; set; }
- public decimal BasePrice { get; set; }
- public string Description { get; set; }
- public string ImageUrl { get; set; }
- public string GetFormattedBasePrice() => BasePrice.ToString("0.00");
- }
- public class Pizza
- {
- public int PizzaId { get; set; }
- public string Name { get; set; }
- public string Description { get; set; }
- public decimal Price { get; set; }
- public bool Vegetarian { get; set; }
- public bool Vegan { get; set; }
- }
- }
|