17 lines
481 B
C#

namespace Marco.Pms.Model.ViewModels.Master
{
public class FeaturePermissionVM
{
public Guid Id { get; set; } // Unique identifier for the permission
public Guid FeatureId { get; set; } // Foreign key to Feature
public string? Name { get; set; } // Feature name
public string? Description { get; set; } // Feature description
public bool IsEnabled { get; set; } // Whether the feature is enabled for this role
}
}