2026-02-24 20:44:16 +00:00
|
|
|
|
using System;
|
2026-05-02 18:43:32 +00:00
|
|
|
|
using Volo.Abp.Domain.Entities;
|
2026-02-24 20:44:16 +00:00
|
|
|
|
|
|
|
|
|
|
namespace Sozsoft.Platform.Entities;
|
|
|
|
|
|
|
2026-05-02 18:43:32 +00:00
|
|
|
|
public class Menu : Entity<Guid>
|
2026-02-24 20:44:16 +00:00
|
|
|
|
{
|
|
|
|
|
|
public string Code { get; set; }
|
|
|
|
|
|
public string DisplayName { get; set; }
|
|
|
|
|
|
public int Order { get; set; }
|
|
|
|
|
|
public string Url { get; set; }
|
|
|
|
|
|
public string Icon { get; set; }
|
|
|
|
|
|
public string ParentCode { get; set; }
|
|
|
|
|
|
public string CssClass { get; set; }
|
|
|
|
|
|
public string RequiredPermissionName { get; set; }
|
2026-08-31 14:17:50 +00:00
|
|
|
|
public string ModuleId { get; set; } // Modul referansi (Module.Id)
|
2026-02-24 20:44:16 +00:00
|
|
|
|
|
|
|
|
|
|
public string Target { get; set; }
|
|
|
|
|
|
public bool IsDisabled { get; set; }
|
|
|
|
|
|
public string ElementId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string UserId { get; set; } // External kullanici id (orn: ali.akman. ihtiyaca gore guid veya int de olabilir)
|
|
|
|
|
|
public string RoleId { get; set; } // External role id (orn: ihracat)
|
|
|
|
|
|
public string CultureName { get; set; } // Bu tanim hangi dil icin "en", "tr"
|
2026-08-21 19:27:59 +00:00
|
|
|
|
}
|