mirror of
https://github.com/aljazceru/BTCPayServerPlugins.git
synced 2025-12-16 23:24:25 +01:00
16 lines
495 B
C#
16 lines
495 B
C#
namespace BTCPayServer.Plugins.SideShift;
|
|
|
|
public class PrismSideshiftDestination
|
|
{
|
|
public string ShiftCoin { get; set; }
|
|
public string ShiftNetwork { get; set; }
|
|
public string ShiftDestination { get; set; }
|
|
public string ShiftMemo { get; set; }
|
|
public string SourceNetwork { get; set; }
|
|
|
|
public bool Valid()
|
|
{
|
|
return !string.IsNullOrEmpty(ShiftCoin) && !string.IsNullOrEmpty(ShiftNetwork) &&
|
|
!string.IsNullOrEmpty(ShiftDestination);
|
|
}
|
|
} |