using System; using Volo.Abp.Domain.Entities.Auditing; namespace Sozsoft.Platform.Entities; public class Route : FullAuditedEntity { public string Key { get; set; } public string Path { get; set; } public string ComponentType { get; set; } public string ComponentPath { get; set; } public string RouteType { get; set; } public string[] Authority { get; set; } public Route(string key, string path, string componentType, string componentPath, string routeType, string[] authority) { Key = key; Path = path; ComponentType = componentType; ComponentPath = componentPath; RouteType = routeType; Authority = authority; } }