11 lines
178 B
C#
11 lines
178 B
C#
namespace zero.Core.Entities
|
|
{
|
|
public interface IRoutedEntity
|
|
{
|
|
/// <summary>
|
|
/// Url for this entity
|
|
/// </summary>
|
|
public string Url { get; set; }
|
|
}
|
|
}
|