11 lines
187 B
C#
11 lines
187 B
C#
using System.Collections.Generic;
|
|
|
|
namespace TheXamlGuy.Framework.WPF
|
|
{
|
|
public interface IRouteDescriptor
|
|
{
|
|
object Route { get; }
|
|
|
|
string? Name { get; }
|
|
}
|
|
} |