17 lines
348 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;
2025-08-03 18:28:28 -03:00
locationid?: number;
2025-07-17 13:56:18 -03:00
holderName: string;
dbaName?: string | null;
holderNumber: string;
holderType: string;
uscibMember: boolean;
2025-07-28 13:56:04 -03:00
govAgency?: boolean;
2025-07-17 13:56:18 -03:00
address1: string;
address2: string;
city: string;
state: string;
country: string;
zip: string;
2025-07-02 22:40:35 -03:00
}