Commit 3c0d6999 by G

some commons type for most api requests

parent 10f3ed7c
export type PaymentCode = "OM" | "FLOOZ" | "MTN" | "WAVE" | "CB"
export interface IpaymentType {
id : number,
code : PaymentCode,
etat : boolean
}
export interface IpaginatedResponse<T> {
count : number,
next : string | null,
previous : string | null,
results : T
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment