using System; using Volo.Abp.Domain.Entities.Auditing; using Volo.Abp.MultiTenancy; namespace Sozsoft.Platform.Entities; public class Route : FullAuditedEntity, IMultiTenant { public Guid? TenantId { get; set; } 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; } }