namespace TeamOctolings.Octobot.Attributes; /// /// Any property marked with should only be accessed by static methods. /// Such properties may be used to provide dependencies where it is not possible to acquire them through normal means. /// [AttributeUsage(AttributeTargets.Property)] public sealed class StaticCallersOnlyAttribute : Attribute;