50 lines
1.9 KiB
C#
50 lines
1.9 KiB
C#
///////////////////////////////////////////////////////////
|
|
// UnitNameDisplayFormats.cs
|
|
// Implementation of Class UnitNameDisplayFormats
|
|
// CSLA type: enumeration
|
|
// Created on: 23-Dec-2004
|
|
// Object design: John
|
|
///////////////////////////////////////////////////////////
|
|
|
|
//UnitNameDisplayFormats
|
|
using System.ComponentModel;
|
|
|
|
namespace GZTW.AyaNova.BLL
|
|
{
|
|
/// <summary>
|
|
/// The style of presentation of a unit to display in the user interface
|
|
/// </summary>
|
|
public enum UnitNameDisplayFormats : int
|
|
{
|
|
|
|
#pragma warning disable 1591
|
|
[Description("LT:UnitNameDisplayFormats.Label.SerialOnly")]
|
|
SerialOnly = 0,
|
|
[Description("LT:UnitNameDisplayFormats.Label.VendorModelSerial")]
|
|
VendorModelSerial = 1,
|
|
[Description("LT:UnitNameDisplayFormats.Label.VendorSerial")]
|
|
VendorSerial = 2,
|
|
[Description("LT:UnitNameDisplayFormats.Label.ModelSerial")]
|
|
ModelSerial = 3,
|
|
[Description("LT:UnitNameDisplayFormats.Label.SerialModelVendor")]
|
|
SerialModelVendor = 4,
|
|
[Description("LT:UnitNameDisplayFormats.Label.SerialModel")]
|
|
SerialModel = 5,
|
|
//Case 9
|
|
[Description("LT:UnitNameDisplayFormats.Label.ModelNumberModelSerial")]
|
|
ModelNumberModelSerial = 6,
|
|
[Description("LT:UnitNameDisplayFormats.Label.ModelModelNumberSerial")]
|
|
ModelModelNumberSerial = 7,
|
|
[Description("LT:UnitNameDisplayFormats.Label.VendorModelModelNumberSerial")]//case 1519
|
|
VendorModelModelNumberSerial = 8,
|
|
|
|
[Description("LT:UnitNameDisplayFormats.Label.SerialDescription")]//case 3150
|
|
SerialDescription = 9,
|
|
[Description("LT:UnitNameDisplayFormats.Label.VendorSerialDescription")]//case 3150
|
|
VendorSerialDescription = 10
|
|
|
|
#pragma warning restore 1591
|
|
|
|
}//end UnitNameDisplayFormats
|
|
|
|
}//end names |