using System.ComponentModel; using VRageMath; namespace Global.Shared.Config { public interface IPluginConfig : INotifyPropertyChanged { bool IsEnabled { get; set; } int Size { get; set; } Vector3I CenterPosition { get; set; } int Capacity { get; set; } int MaxDepth { get; set; } } }