sozsoft-platform/api/src/Sozsoft.Platform.Domain/Entities/Tenant/Administration/Route.cs
Sedat ÖZTÜRK 9875ba3041 Route -> Component Type sütunu eklendi.
Dynamic component type
2026-06-02 10:14:33 +03:00

25 lines
715 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 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;
}
}