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.
16 lines
499 B
C#
16 lines
499 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace NexusForever.Database.Character.Model
|
|
{
|
|
public class CharacterCostumeModel
|
|
{
|
|
public ulong Id { get; set; }
|
|
public byte Index { get; set; }
|
|
public uint Mask { get; set; }
|
|
public DateTime Timestamp { get; set; }
|
|
|
|
public CharacterModel Character { get; set; }
|
|
public ICollection<CharacterCostumeItemModel> CostumeItem { get; set; } = new HashSet<CharacterCostumeItemModel>();
|
|
}
|
|
}
|