2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2026-06-13 22:48:42 +00:00
Files
esiur-dotnet/Tests/RPC/Client/Model/Esiur/Esiur.Tests.RPC.EsiurServer.PaymentMethod.g.cs
T
2026-06-08 18:01:02 +03:00

19 lines
345 B
C#

using System;
using Esiur.Resource;
using Esiur.Core;
using Esiur.Data;
using Esiur.Protocol;
namespace Esiur.Tests.RPC.EsiurServer
{
[Remote("Esiur.Tests.RPC.EsiurServer.PaymentMethod", "")]
[Export]
public enum PaymentMethod
{
Card = 1,
Cash = 0,
Crypto = 3,
Other = 4,
Wire = 2
}
}