ExternalAPI_NET8/Model/Entity/Ordermeals.cs

12 lines
190 B
C#

namespace Web.Core.Model.Entity;
public class Ordermeal
{
public int lunch { get; set; }
public int dinner { get; set; }
public int total => lunch + dinner;
}