/** * Represents a System Country. * @export * @class ProductSystemCountryModel */ export declare class ProductSystemCountryModel { /** * @type {number} * @memberof ProductSystemCountryModel */ systemCountryId?: number | undefined; /** * @type {number} * @memberof ProductSystemCountryModel */ systemId?: number | undefined; /** * @type {string} * @memberof ProductSystemCountryModel */ country?: string | undefined; /** * @type {Date} * @memberof ProductSystemCountryModel */ effDate?: Date | undefined; /** * @type {Date} * @memberof ProductSystemCountryModel */ endDate?: Date | undefined; }