1
0
mirror of synced 2024-12-13 06:51:08 +01:00
GC-local-server-rewrite/Domain/Enums/CardReturnCode.cs

27 lines
603 B
C#
Raw Normal View History

2023-02-09 16:19:14 +01:00
namespace Domain.Enums;
2023-02-09 10:25:42 +01:00
public enum CardReturnCode
{
/// <summary>
/// Normal
/// 処理は正常に完了しました in debug string
/// </summary>
Ok = 1,
/// <summary>
/// New card
/// 未登録のカードです in debug string
/// </summary>
CardNotRegistered = 23,
/// <summary>
/// Not reissue, to determine whether it is a new card or reissued card
/// 再発行予約がありません in debug string
/// </summary>
NotReissue = 27,
2023-02-16 09:53:02 +01:00
2023-02-09 10:25:42 +01:00
/// <summary>
/// Server side validation error
/// </summary>
2023-02-09 16:19:14 +01:00
Unknown = -1
2023-02-09 10:25:42 +01:00
}