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