You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/NoFrixion.MoneyMoov/Models/Payouts/PayoutCreate.cs
+3-1
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ public class PayoutCreate
39
39
publicCurrencyTypeEnumCurrency{get;set;}
40
40
41
41
[Required(ErrorMessage="Amount is required.")]
42
-
[Range(0.00001,double.MaxValue,ErrorMessage="Minimum value of 0.00001 is required for Amount")]
42
+
[Range(0.00001,double.MaxValue,ErrorMessage="Minimum value of 0.01 is required for Amount")]
43
43
publicdecimalAmount{get;set;}
44
44
45
45
/// <summary>
@@ -151,11 +151,13 @@ public CounterpartyCreate? DestinationAccount
151
151
/// <summary>
152
152
/// For Bitcoin payouts, when this flag is set the network fee will be deducted from the send amount. This is particularly useful for sweeps where it can be difficult to calculate the exact fee required.
153
153
/// </summary>
154
+
[Obsolete]
154
155
publicboolBitcoinSubtractFeeFromAmount{get;set;}
155
156
156
157
/// <summary>
157
158
/// The Bitcoin fee rate to apply in Satoshis per virtual byte.
0 commit comments