namespace Salmon.Core.Cliff; [AttributeUsage(AttributeTargets.Property)] public class PersistentField : Attribute { public string? Name { get; set; } public PersistentField() { } public PersistentField(string name) { Name = name; } }