import { SourceFeedName } from '../enum/feed.enum';

export interface ISourceFeedAttr {
  FeedName: SourceFeedName;
  Status: string;
  IsSourceFeedAvailableYN: string;
  IsFeedCutOffYN: string;
  CurrentCutOffHistoryId?: string;
  AutomaticCutOffVariance?: number;
  AutomaticCutOffMinutes?: number;
}
