26 lines
351 B
C#
26 lines
351 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Ui.ProductionControls.Enums
|
|
{
|
|
public enum Img
|
|
{
|
|
Default,
|
|
|
|
|
|
|
|
Cloud,
|
|
Compare,
|
|
Error,
|
|
Irda,
|
|
Login,
|
|
Plugin,
|
|
Success,
|
|
Waiting,
|
|
Warning,
|
|
BarcodeScanner,
|
|
}
|
|
}
|