24 lines
608 B
C#
24 lines
608 B
C#
|
|
using System;
|
|||
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
|||
|
|
|
|||
|
|
namespace Sozsoft.Platform.Entities;
|
|||
|
|
|
|||
|
|
public class Route : FullAuditedEntity<Guid>
|
|||
|
|
{
|
|||
|
|
public string Key { get; set; }
|
|||
|
|
public string Path { get; set; }
|
|||
|
|
public string ComponentPath { get; set; }
|
|||
|
|
public string RouteType { get; set; }
|
|||
|
|
public string[] Authority { get; set; }
|
|||
|
|
|
|||
|
|
public Route(string key, string path, string componentPath, string routeType, string[] authority)
|
|||
|
|
{
|
|||
|
|
Key = key;
|
|||
|
|
Path = path;
|
|||
|
|
ComponentPath = componentPath;
|
|||
|
|
RouteType = routeType;
|
|||
|
|
Authority = authority;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|