9 lines
180 B
C#
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;
|
|
} |