nexusforever/Source/NexusForever.Database.Character/Model/CharacterCostumeModel.cs
Rawaho 6ebe337877 Implemented database migrations.
Moved from database first to code first.
Upgraded to EFCore 3.1.
Upgraded to .NET Core 3.1.
2020-02-29 15:44:17 +13:00

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>();
}
}