11 lines
307 B
C#
11 lines
307 B
C#
namespace Marco.Pms.Model.ViewModels.Employee
|
|
{
|
|
public class EmployeeProfile
|
|
{
|
|
public EmployeeVM? EmployeeInfo { get; set; }
|
|
public string[]? Projects { get; set; }
|
|
public string[]? FeaturePermissions { get; set; }
|
|
public string[]? Features { get; set; }
|
|
}
|
|
}
|