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.
12 lines
333 B
C#
12 lines
333 B
C#
namespace NexusForever.Database.Character.Model
|
|
{
|
|
public class CharacterMailAttachmentModel
|
|
{
|
|
public ulong Id { get; set; }
|
|
public uint Index { get; set; }
|
|
public ulong ItemGuid { get; set; }
|
|
|
|
public CharacterMailModel Mail { get; set; }
|
|
public ItemModel Item { get; set; }
|
|
}
|
|
}
|