Added & modified several message types.

This commit is contained in:
Tom
2024-08-10 19:33:33 +00:00
parent d8522584c4
commit 9d838e66ad
21 changed files with 190 additions and 72 deletions

View File

@@ -0,0 +1,11 @@
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; }
}
}