17 lines
348 B
TypeScript

export interface Holder {
holderid: number;
locationid?: 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;
}