namespace Server; public class Entity(Dictionary attributes, Probmethods.probMethodDelegate probMethod, List datapoints, string name) { public Dictionary attributes = attributes; public Probmethods.probMethodDelegate probMethod = probMethod; public List datapoints = datapoints; public int id; public string name = name; }