using System.Collections.Generic; namespace ACE.Server.Physics.Common { public class AddUpdateObjs { public List AddObjects; public List UpdateObjects; public AddUpdateObjs(List addObjects, List updateObjects) { AddObjects = addObjects; UpdateObjects = updateObjects; } } }