using System; namespace Masuit.Tools.Systems; /// /// 多别名属性 /// [AttributeUsage(AttributeTargets.Property)] public class FallbackJsonProperty(string preferredName, params string[] fallbackReadNames) : Attribute { public string PreferredName { get; } = preferredName; public string[] FallbackReadNames { get; } = fallbackReadNames; }