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