12 lines
190 B
C#
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;
|
|
|
|
} |