More features

This commit is contained in:
gamer147
2026-05-23 14:18:01 -04:00
parent b2024af852
commit 6b70850b7b
59 changed files with 862 additions and 42033 deletions

View File

@@ -1,10 +1,19 @@
using System.ComponentModel.DataAnnotations.Schema;
using DCGEngine.Database.Models;
using SVSim.Database.Common;
namespace SVSim.Database.Models;
public class ShadowverseCardSetEntry : CardSetEntry
public class ShadowverseCardSetEntry : BaseEntity<int>
{
/// <summary>
/// The internal name of the set.
/// </summary>
public string Name { get; set; } = string.Empty;
/// <summary>
/// The cards in the set.
/// </summary>
public List<ShadowverseCardEntry> Cards { get; set; } = new List<ShadowverseCardEntry>();
public bool IsInRotation { get; set; }
public bool IsBasic { get; set; }
}
}