9 lines
224 B
C#
9 lines
224 B
C#
namespace Moonlight.App.Database.Entities.Store;
|
|
|
|
public class Coupon
|
|
{
|
|
public int Id { get; set; }
|
|
public string Code { get; set; } = "";
|
|
public int Percent { get; set; }
|
|
public int Amount { get; set; }
|
|
} |