IndexAttribute.cs

20 lines | 339 B Blame History Raw Download
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tools
{
    public class IndexAttrib : System.Attribute
    {
        public int Index { private set; get; }

        public IndexAttrib(int Index)
        {
            this.Index = Index;
        }

    }
}