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