11 lines
191 B
C#
11 lines
191 B
C#
using System;
|
|
using Windows.UI.Xaml;
|
|
|
|
namespace TheXamlGuy.TaskbarGroup.Flyout.Foundation
|
|
{
|
|
public interface IDataTemplateFactory
|
|
{
|
|
DataTemplate Create(Type type);
|
|
}
|
|
}
|