(精華)2020年6月26日 C#類庫model MapAttribute

愚公搬程式碼發表於2020-06-26
using System;

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

相關文章