namespace Bit.Core.Billing.Licenses.Attributes; [AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = true)] public class LicenseVersionAttribute(int version) : Attribute { /// /// The license version in which this property was added. /// public int Version { get; } = version; }