DTOs for index mostly done, doing DB models
This commit is contained in:
13
SVSim.EmulatedEntrypoint/Models/Dtos/UserItem.cs
Normal file
13
SVSim.EmulatedEntrypoint/Models/Dtos/UserItem.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using MessagePack;
|
||||
|
||||
namespace SVSim.EmulatedEntrypoint.Models.Dtos;
|
||||
|
||||
[MessagePackObject]
|
||||
public class UserItem
|
||||
{
|
||||
[Key("item_id")]
|
||||
public int ItemId { get; set; }
|
||||
|
||||
[Key("number")]
|
||||
public int Number { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user