32 lines
766 B
C#
32 lines
766 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using DCGEngine.Database.Models;
|
|
using SVSim.Database.Enums;
|
|
|
|
namespace SVSim.Database.Models;
|
|
|
|
public class ShadowverseCardEntry : CardEntry
|
|
{
|
|
/// <summary>
|
|
/// The rarity of this card.
|
|
/// </summary>
|
|
public Rarity Rarity { get; set; }
|
|
|
|
#region Owned
|
|
|
|
/// <summary>
|
|
/// Info about this card in the collection, if it can be collected.
|
|
/// </summary>
|
|
public CardCollectionInfo? CollectionInfo { get; set; }
|
|
|
|
#endregion
|
|
|
|
#region Navigation Properties
|
|
|
|
/// <summary>
|
|
/// The class this card belongs to, or optionally none for neutral cards.
|
|
/// </summary>
|
|
public ClassEntry? Class { get; set; }
|
|
|
|
#endregion
|
|
} |