Files
SVSimServer/SVSim.EmulatedEntrypoint/Models/Dtos/RedEtherOverride.cs
2024-09-12 00:35:31 -04:00

22 lines
622 B
C#

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