using System; using System.Collections.Generic; using System.Windows; using System.Windows.Input; namespace ICSharpCode.Core.Presentation { /// /// Description of BindingInfoTemplate. /// public struct BindingInfoTemplate : IBindingInfo { public string OwnerInstanceName { get; set; } public ICollection OwnerInstances { get; set; } public string OwnerTypeName { get; set; } public ICollection OwnerTypes { get; set; } public string RoutedCommandName { get; set; } public RoutedUICommand RoutedCommand { get; set; } public BindingGroupCollection Groups { get; set; } } }