(精华)2020年6月26日 C#类库model MapAttribute

using System;

namespace Coldairarrow.Util
{
    public class MapAttribute : Attribute
    {
        public MapAttribute(params Type[] targetTypes)
        {
            TargetTypes = targetTypes;
        }
        public Type[] TargetTypes { get; }
    }
}

猜你喜欢

转载自blog.csdn.net/aa2528877987/article/details/106971168