import { NonSourceFeedName, SourceFeedName } from '../enum/feed.enum';
export interface IFeedAttr {
    FeedName: SourceFeedName | NonSourceFeedName;
    IsSourcePriceYN: string;
    IsManualPriceActivatedYN: string;
    CurrentManualPriceHistoryId?: string;
}
