16 lines
322 B
TypeScript
Raw Normal View History

2025-07-02 22:40:35 -03:00
export interface Holder {
2025-07-17 13:56:18 -03:00
holderid: number;
holderName: string;
dbaName?: string | null;
holderNumber: string;
holderType: string;
uscibMember: boolean;
govAgency: boolean;
address1: string;
address2: string;
city: string;
state: string;
country: string;
zip: string;
2025-07-02 22:40:35 -03:00
}