2023-12-20 10:34:23 +00:00
|
|
|
|
#pragma warning disable CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable.
|
|
|
|
|
using GethPlugin;
|
|
|
|
|
|
|
|
|
|
namespace CodexContractsPlugin.Marketplace
|
|
|
|
|
{
|
|
|
|
|
public partial class Request : RequestBase
|
|
|
|
|
{
|
2023-12-20 12:21:53 +00:00
|
|
|
|
public ulong BlockNumber { get; set; }
|
2023-12-20 10:34:23 +00:00
|
|
|
|
public byte[] RequestId { get; set; }
|
|
|
|
|
|
|
|
|
|
public EthAddress ClientAddress { get { return new EthAddress(Client); } }
|
|
|
|
|
}
|
2023-12-20 12:21:53 +00:00
|
|
|
|
|
|
|
|
|
public partial class SlotFilledEventDTO
|
|
|
|
|
{
|
|
|
|
|
public ulong BlockNumber { get; set; }
|
|
|
|
|
public EthAddress Host { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public partial class SlotFreedEventDTO
|
|
|
|
|
{
|
|
|
|
|
public ulong BlockNumber { get; set; }
|
|
|
|
|
}
|
2023-12-20 10:34:23 +00:00
|
|
|
|
}
|
|
|
|
|
#pragma warning restore CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable.
|