Y2S1-Web_Apps_and_Services/ThAmCo.Events/Models/Dto/MenuDTO.cs

17 lines
299 B
C#
Raw Normal View History

2020-06-07 21:36:12 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace ThAmCo.Events.Models.Dto
{
public class MenuDTO
{
public int Id { get; set; }
public string Items { get; set; }
public double Price { get; set; }
}
}