22 lines
441 B
C#
22 lines
441 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Knoks.Api.Nswag.ClientApp
|
|
{
|
|
public enum ApiErrorId
|
|
{
|
|
Undefined = -1,
|
|
InvalidApiIdentifier = 1,
|
|
ApiConsumerIsDisabled = 2,
|
|
InvalidUsernameOrPassword = 3,
|
|
InvalidPinCode = 4,
|
|
Validation = 5,
|
|
Authorization = 6
|
|
}
|
|
public class BaseClient {
|
|
public string BaseUrl { get; set; }
|
|
|
|
}
|
|
}
|