17 lines
299 B
C#
17 lines
299 B
C#
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; }
|
|
}
|
|
}
|