using System; namespace TinaX.UIKit.MVVM.Interfaces { /// /// 数据提供者 /// public interface IDataProducer { } /// /// 泛型 数据提供者 /// /// public interface IDataProducer : IDataProducer { Action OnValueChange { get; set; } } }