mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-05-02 20:42:04 -04:00
Big update introducing ghetto command interface, settings, database and howl.gg bet feed scraping
This commit is contained in:
26
KfChatDotNetKickBot/Models/PocketWatchModel.cs
Normal file
26
KfChatDotNetKickBot/Models/PocketWatchModel.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
namespace KfChatDotNetKickBot.Models;
|
||||
|
||||
public class PocketWatchModel
|
||||
{
|
||||
public required string Network { get; set; }
|
||||
public required string Address { get; set; }
|
||||
public required string Label { get; set; }
|
||||
public required bool BypassGambaSeshPresenceDetection { get; set; }
|
||||
public required int CheckIntervalSec { get; set; }
|
||||
// Used internally to detect new transactions
|
||||
public required DateTime LastChecked { get; set; } = DateTime.Now;
|
||||
}
|
||||
|
||||
public class PocketWatchEventModel
|
||||
{
|
||||
public required string TransactionHash { get; set; }
|
||||
public required DateTimeOffset Time { get; set; }
|
||||
public required string Currency { get; set; }
|
||||
public required string Effect { get; set; }
|
||||
public required string Network { get; set; }
|
||||
public required string Address { get; set; }
|
||||
public required long Balance { get; set; }
|
||||
public required float UsdRate { get; set; }
|
||||
public required bool IsMempool { get; set; }
|
||||
public required PocketWatchModel PocketWatch { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user