using System; namespace MfGames.Nitride.Generators; /// /// A marker attribute that indicates that the source generator should /// automatically add `Set*` methods for every public property in the class. /// The class must be `partial` for this to work. /// [AttributeUsage(AttributeTargets.Class)] public class WithPropertiesAttribute : Attribute { }