1
0
mirror of synced 2024-12-01 01:07:18 +01:00
GC-local-server-rewrite/Domain/Enums/CardReturnCode.cs
2023-02-09 23:19:14 +08:00

27 lines
607 B
C#

namespace Domain.Enums;
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,
/// <summary>
/// Server side validation error
/// </summary>
Unknown = -1
}