aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher.UI/Properties
ModeNameSize
-rw-r--r--AssemblyInfo.cs388logstatsplain
-rw-r--r--R
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.PPC.Browser.Attributes
{
    public class BoundObjectAttribute : Attribute
    {
        public String Name { get; set; }
        public String ScriptFile { get; set; }

        public BoundObjectAttribute(String name,String scriptFile)
        {
            Name = name;
            ScriptFile = scriptFile;
        }
    }
}