21 lines
588 B
C#
21 lines
588 B
C#
using Marco.Pms.Model.Entitlements;
|
|
using Microsoft.AspNetCore.Mvc.ModelBinding.Validation;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Marco.Pms.Model.ViewModels
|
|
{
|
|
public class ApplicationRolesVM
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Role { get; set; }
|
|
public string Description { get; set; }
|
|
public ICollection<FeaturePermissionVM> FeaturePermission { get; set; }
|
|
}
|
|
}
|