blob: 78a6b7a3464d4f058da7d21ceca1c22dd81bf7b3 (
plain)
| ofs | hex dump | ascii |
|---|
| 0000 | 89 50 4e 47 0d 0a 1a 0a 00 00 00 0d 49 48 44 52 00 00 01 44 00 00 01 44 08 06 00 00 00 5f ea 47 | .PNG........IHDR...D...D....._.G |
| 0020 | c6 00 00 00 01 73 52 47 42 00 ae ce 1c e9 00 00 38 ac 49 44 41 54 78 01 ed 9d 0b ac b5 d9 59 d7 | .....sRGB.......8.IDATx.......Y. |
| 0040 | e7 9b 4b db 99 e9 cc 74 3a d3 3b 0e 68 80 82 2d 2d 42 4b 4b 49 4c b1 45 a4 05 63 5a 44 49 c1 2a | ..K....t:.;.h..--BKKIL.E..cZDI.* |
| 0060 | a4 b6 a2 43 43 a2 24 d5 46 9b d8 18 63 b4 20 16 12 4b b0 46 83 85 5a ab 22 82 96 34 45 5a 0c 25 | ...CC.$.F...c....K.F..Z."..4EZ.% |
| 0080 | 41 c6 6a bd 51 03 c5 dusing System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.MachineStudio.Technician.TechItems
{
/// <summary>
/// Represents a tech item attribute
/// </summary>
/// <seealso cref="System.Attribute" />
public class TechItemAttribute : Attribute
{
/// <summary>
/// Gets or sets the item index.
/// </summary>
public int Index { get; set; }
/// <summary>
/// Initializes a new instance of the <see cref="TechItemAttribute"/> class.
/// </summary>
/// <param name="index">The index.</param>
public TechItemAttribute(int index)
{
Index = index;
}
}
}
|