using System; namespace OpenTraffic.Interfaces { /// /// Callback interface for applying new data to the solution. /// public interface IApplyData { /// /// Update data from edited model. /// /// New modified model. void applyData(OpenTraffic.Model.TrafficModel newModel); } }