14 lines
477 B
C#
14 lines
477 B
C#
using MongoDB.Bson.Serialization.Attributes;
|
|
|
|
namespace Marco.Pms.Model.MongoDBModels
|
|
{
|
|
[BsonIgnoreExtraElements]
|
|
public class EmployeePermissionMongoDB
|
|
{
|
|
public string EmployeeId { get; set; } = string.Empty;
|
|
public List<string> ApplicationRoleIds { get; set; } = new List<string>();
|
|
public List<string> PermissionIds { get; set; } = new List<string>();
|
|
public List<string> ProjectIds { get; set; } = new List<string>();
|
|
}
|
|
}
|