mirror of
https://git.v0l.io/Kieran/void.cat.git
synced 2025-11-15 12:47:19 +01:00
17 lines
293 B
C#
17 lines
293 B
C#
namespace VoidCat.Model.Payments;
|
|
|
|
/// <summary>
|
|
/// Payment services supported by the system
|
|
/// </summary>
|
|
public enum PaymentServices
|
|
{
|
|
/// <summary>
|
|
/// No service
|
|
/// </summary>
|
|
None,
|
|
|
|
/// <summary>
|
|
/// Strike.me payment service
|
|
/// </summary>
|
|
Strike
|
|
} |