Advertisement
felixbin

Pizza.cs

Mar 31st, 2014
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.28 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5.  
  6. namespace TestGrounds
  7. {
  8.     public class Pizza
  9.     {
  10.         public string name { get; set; }
  11.         public int price { get; set; }
  12.         public string imgUrl { get; set; }
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement