mirror of
https://github.com/oshima-studios/OshimaGameModule.git
synced 2026-01-19 14:08:23 +00:00
16 lines
552 B
C#
16 lines
552 B
C#
namespace Oshima.FunGame.WebAPI.Models
|
|
{
|
|
public class GoodsDTO
|
|
{
|
|
public long Id { get; set; } = 0;
|
|
public string Name { get; set; } = "";
|
|
public string Description { get; set; } = "";
|
|
public DateTime? ExpireTime { get; set; } = null;
|
|
public int Stock { get; set; } = 0;
|
|
public int Quota { get; set; } = 0;
|
|
public double CurrencyPrice { get; set; } = 0;
|
|
public double MaterialPrice { get; set; } = 0;
|
|
public Dictionary<string, object> Values { get; set; } = [];
|
|
}
|
|
}
|