using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.MachineStudio.Technician.TechItems
{
///
/// Represents a tech item attribute
///
///
public class TechItemAttribute : Attribute
{
///
/// Gets or sets the item index.
///
public int Index { get; set; }
public bool SupportsLite { get; set; }
///
/// Initializes a new instance of the class.
///
/// The index.
public TechItemAttribute(int index, bool supportsLite)
{
Index = index;
SupportsLite = supportsLite;
}
}
}