Spaces:
Running
Running
File size: 891 Bytes
4c550c2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | using System;
using System.Collections.Generic;
namespace TaskTrackingSystem.Database.AppDbContextModels;
public partial class Permission
{
public long PermissionId { get; set; }
public string PermissionCode { get; set; } = null!;
public long MenuId { get; set; }
public string ActionName { get; set; } = null!;
public string ApiName { get; set; } = null!;
public string? HttpMethod { get; set; }
public bool Visible { get; set; }
public int OrderNo { get; set; }
public bool IsDeleted { get; set; }
public long? CreatedById { get; set; }
public DateTime CreatedAt { get; set; }
public long? UpdatedById { get; set; }
public DateTime? UpdatedAt { get; set; }
public virtual Menu Menu { get; set; } = null!;
public virtual ICollection<RolePermission> RolePermissions { get; set; } = new List<RolePermission>();
}
|