import { IParty } from "./party.interface"; export interface IAgreementProducer { agreementProducerFullName: string; agreementProducerIdentifier: string; producerKey: string; producerLeaderIndicator: boolean; producerPercentage: number; party?: IParty; }