first commit
This commit is contained in:
23
src/app/core/interfaces/agent-limit.ts
Normal file
23
src/app/core/interfaces/agent-limit.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
export interface AgentLimit {
|
||||
id: string;
|
||||
code: string; // e.g., ALC001
|
||||
configCode: string; // e.g., ALC001
|
||||
nom: string;
|
||||
isDefault: boolean;
|
||||
actif: boolean;
|
||||
|
||||
// Bet limits
|
||||
betMin?: number;
|
||||
betMax?: number;
|
||||
maxBet?: number;
|
||||
maxDisburseBet?: number;
|
||||
|
||||
// Airtime
|
||||
airtimeMin?: number;
|
||||
airtimeMax?: number;
|
||||
|
||||
createdAt?: string;
|
||||
createdBy?: string;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user