namespace CryptoExchange.Net.CommonObjects { /// /// Base class for common objects /// public class BaseCommonObject { /// /// The source object the data is derived from /// public object SourceObject { get; set; } = null!; } }