mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
Moved from database first to code first. Upgraded to EFCore 3.1. Upgraded to .NET Core 3.1.
18 lines
619 B
C#
18 lines
619 B
C#
namespace NexusForever.Database.Character.Model
|
|
{
|
|
public class ItemModel
|
|
{
|
|
public ulong Id { get; set; }
|
|
public ulong? OwnerId { get; set; }
|
|
public uint ItemId { get; set; }
|
|
public ushort Location { get; set; }
|
|
public uint BagIndex { get; set; }
|
|
public uint StackCount { get; set; }
|
|
public uint Charges { get; set; }
|
|
public float Durability { get; set; }
|
|
public uint ExpirationTimeLeft { get; set; }
|
|
|
|
public CharacterModel Character { get; set; }
|
|
public CharacterMailAttachmentModel MailAttachment { get; set; }
|
|
}
|
|
}
|