import { IProperty } from "./property.response";
export interface IPaymentResponse extends Array<IPayment> {
}
export interface IPayment {
    id: string;
    propertyId: string;
    userId: string;
    amount: string;
    type: string;
    status: string;
    reqAt: string;
    paidAt: string;
    referanceId: null;
    isActive: boolean;
    createdAt: string;
    updatedAt: string;
    property: IProperty;
}
