DTOs for index mostly done, doing DB models

This commit is contained in:
gamer147
2024-09-12 00:35:31 -04:00
parent ac3b002d74
commit 79505e0c1a
69 changed files with 1523 additions and 21 deletions

View File

@@ -0,0 +1,22 @@
namespace SVSim.EmulatedEntrypoint.Models.Dtos;
/// <summary>
/// An indication that a specific card has had it's red ether amounts overriden from the normal amounts.
/// </summary>
public class RedEtherOverride
{
/// <summary>
/// The id of the affected card.
/// </summary>
public ulong CardId { get; set; }
/// <summary>
/// How much red ether is now provided from dusting the card.
/// </summary>
public int GetRedEther { get; set; }
/// <summary>
/// How much red ether is now required to craft the card.
/// </summary>
public int UseRedEther { get; set; }
}