DTOs for index mostly done, doing DB models
This commit is contained in:
12
SVSim.EmulatedEntrypoint/Models/Dtos/ShopExpiryInfo.cs
Normal file
12
SVSim.EmulatedEntrypoint/Models/Dtos/ShopExpiryInfo.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using MessagePack;
|
||||
|
||||
namespace SVSim.EmulatedEntrypoint.Models.Dtos;
|
||||
|
||||
[MessagePackObject]
|
||||
public class ShopExpiryInfo
|
||||
{
|
||||
[Key("sales_period_time")]
|
||||
public DateTime? SalesPeriodTime { get; set; }
|
||||
[Key("sales_period_series")]
|
||||
public int? SalesPeriodSeries { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user