Files
BTCPayServerPlugins/Plugins/BTCPayServer.Plugins.SideShift/PrismSideshiftDestination.cs
2023-07-18 11:23:06 +02:00

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);
}
}