using Muchinfo.MTPClient.Data.Enums; using Muchinfo.MTPClient.Data.Model; namespace Muchinfo.MTPClient.Infrastructure.Interfaces { /// /// 行情窗口接口 /// public interface IQuoteView { /// /// 选中商品 /// /// The selected item. QuoteGoods SelectedItem { get; } /// /// 第一个商品 /// /// The first quote goods. QuoteGoods FirstQuoteGoods { get; } /// /// 更新列表数据 /// /// The new type. /// The additional information. void RefreshList(MenuCommandType newType, MarketsInfoModel additionalInfo); } }