You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

RestaurantCard.cs 388B

12345678910111213
  1. namespace ProRestaurant.Containers
  2. {
  3. public class RestaurantCard
  4. {
  5. public int Id { get; set; }
  6. public string Logo { get; set; }
  7. public string Name { get; set; }
  8. public string Suburb { get; set; }
  9. public string SubText { get; set; }
  10. public string DeliveryTime { get; set; }
  11. public string DeliveryFee { get; set; }
  12. }
  13. }