mirror of
https://github.com/BillyCool/MariesWonderland.git
synced 2026-03-29 11:12:27 +02:00
15 lines
322 B
C#
15 lines
322 B
C#
using MariesWonderland.Models.Type;
|
|
|
|
namespace MariesWonderland.Models.Entities;
|
|
|
|
public class EntityIUserDeckCharacterDressupCostume
|
|
{
|
|
public long UserId { get; set; }
|
|
|
|
public string UserDeckCharacterUuid { get; set; }
|
|
|
|
public int DressupCostumeId { get; set; }
|
|
|
|
public long LatestVersion { get; set; }
|
|
}
|