using Skeleton.DataStructure.Link; namespace Hermeteus; public class HeterogeneousMixture { public HeterogeneousMixture() { Layers = new Link(); } internal Link Layers { get; } public double ExternalTemperature { get; internal set; } public void React() { throw new NotImplementedException(); } private void HeatExchange() { throw new NotImplementedException(); } private void Precipitate() { throw new NotImplementedException(); } private void Stand() { throw new NotImplementedException(); } internal void Add(HeterogeneousMixture m) { throw new NotImplementedException(); } }