Teso Business 2.0 angular source code https://bacwaredev.barhendev.com/teso
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
602 B

3 years ago
export interface Finance {
businessID: string;
gold: number;
}
export interface TesoBusinessDetail {
businessId?: string,
Handle?: string,
businessName?: string,
businessEmail?: string,
businessTin?: string,
businessDescription?: string,
businessCategory?: string,
businessAddress?: string,
businessContact?: string,
businessLogo?: string,
dateOfEst?: Date,
businessDigitalAddress?: string,
businessLatitude?: string,
businessLongitude?: string,
}
export interface BusinessCategory {
categoryCode: string,
categoryName: string,
}