More features
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user