9 lines
94 B
C#
9 lines
94 B
C#
namespace zero.Routing;
|
|
|
|
public enum LinkTarget
|
|
{
|
|
Default = 0,
|
|
Self = 1,
|
|
Blank = 2
|
|
}
|