ExternalAPI_NET8/Model/Entity/Ordermeals.cs
2026-05-21 17:23:36 +08:00

9 lines
180 B
C#

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