hermes-socket-library/Requests/Messages/Redemption.cs

11 lines
305 B
C#
Raw Normal View History

namespace HermesSocketLibrary.Requests.Messages
{
public class Redemption
{
public string Id { get; set; }
public string RedemptionId { get; set; }
public string ActionName { get; set; }
public int Order { get; set; }
public bool State { get; set; }
}
}