import { ManualPriceStatus, NonSourceFeedName, SourceFeedName } from '../enum/feed.enum';
export interface IPriceFeedManualPriceHistoryAttr {
    FeedManualPriceHistoryId: string;
    FeedName: SourceFeedName | NonSourceFeedName;
    BuyPrice: number;
    SellPrice: number;
    Status: ManualPriceStatus;
    ActivationDateTime: Date;
    ActivatedById: string;
    DeactivationDateTime: Date;
    DeactivatedById: string;
}
