export interface IPriceData {
    FeedName: string;
    Currency: string;
    SellPrice: number;
    BuyPrice: number;
    Timestamp: Date;
    IsSourceFeedAvailableYN?: string;
}
