This repository has been archived on 2021-04-30. You can view files and clone it, but cannot push or open issues or pull requests.
blazing-workshop/BlazingPizza.Shared/Topping.cs
2020-12-17 16:52:43 +01:00

15 lines
268 B
C#

namespace BlazingPizza
{
public class Topping
{
public int Id { get; set; }
public string Name { get; set; }
public decimal Price { get; set; }
public string GetFormattedPrice() => Price.ToString("0.00");
}
}