15 lines
268 B
C#
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");
|
|||
|
}
|
|||
|
}
|