using MongoDB.Bson.Serialization.Attributes; namespace Marco.Pms.Model.MongoDBModels { [BsonIgnoreExtraElements] public class EmployeePermissionMongoDB { public string EmployeeId { get; set; } = string.Empty; public List ApplicationRoleIds { get; set; } = new List(); public List PermissionIds { get; set; } = new List(); public List ProjectIds { get; set; } = new List(); } }