import { NonSourceFeedName } from '../enum/feed.enum';
import { IFeedHistoryAttr } from './price-feed-history-attr.interface';
export interface ITomeiPriceHistoryAttr {
    TomeiPriceHistoryId?: string;
    FeedHistoryId: string;
    FeedName: NonSourceFeedName;
    Currency: string;
    DateTime: Date;
    AdjustBuyPercentage: number;
    AdjustSellPercentage: number;
    TomeiBuyPrice: number;
    TomeiSellPrice: number;
    AdjustedById: string;
    AdjustedDateTime: Date;
    IsManualPriceActivatedYN: string;
    BuyLabourCharges: number;
    SellLabourCharges: number;
}
export interface ITomeiPriceHistoryFindAllAttr extends ITomeiPriceHistoryAttr {
    FeedHistory: IFeedHistoryAttr;
}
