sozsoft-platform/api/src/Sozsoft.Platform.Domain/Entities/Tenant/Administration/Route.cs

26 lines
715 B
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
using System;
using Volo.Abp.Domain.Entities.Auditing;
namespace Sozsoft.Platform.Entities;
public class Route : FullAuditedEntity<Guid>
2026-02-24 20:44:16 +00:00
{
public string Key { get; set; }
public string Path { get; set; }
public string ComponentType { get; set; }
2026-02-24 20:44:16 +00:00
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)
2026-02-24 20:44:16 +00:00
{
Key = key;
Path = path;
ComponentType = componentType;
2026-02-24 20:44:16 +00:00
ComponentPath = componentPath;
RouteType = routeType;
Authority = authority;
}
}