mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
4a05f16050
This allows plugins to reuse the status message mechanism.
8 lines
209 B
C#
8 lines
209 B
C#
namespace BTCPayServer.Abstractions.Constants;
|
|
|
|
public class WellKnownTempData
|
|
{
|
|
public const string SuccessMessage = nameof(SuccessMessage);
|
|
public const string ErrorMessage = nameof(ErrorMessage);
|
|
}
|