mirror of
https://github.com/aljazceru/BTCPayServerPlugins.git
synced 2025-12-17 15:44:26 +01:00
15 lines
449 B
C#
15 lines
449 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 bool Valid()
|
|
{
|
|
return !string.IsNullOrEmpty(ShiftCoin) && !string.IsNullOrEmpty(ShiftNetwork) &&
|
|
!string.IsNullOrEmpty(ShiftDestination);
|
|
}
|
|
} |