33 lines
827 B
C#
33 lines
827 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.ComponentModel.DataAnnotations;
|
|||
|
using System.Linq;
|
|||
|
using System.Web;
|
|||
|
using Resources;
|
|||
|
|
|||
|
namespace Weee.Models
|
|||
|
{
|
|||
|
public enum LCAStatus
|
|||
|
{
|
|||
|
[Display(Name = "LCAStatusNew", ResourceType = typeof(Resource))]
|
|||
|
New,
|
|||
|
|
|||
|
[Display(Name = "LCAStatusProcessing", ResourceType = typeof(Resource))]
|
|||
|
Processing,
|
|||
|
|
|||
|
[Display(Name = "LCAStatusWaiting", ResourceType = typeof(Resource))]
|
|||
|
Waiting,
|
|||
|
|
|||
|
[Display(Name = "LCAStatusRejected", ResourceType = typeof(Resource))]
|
|||
|
Rejected,
|
|||
|
|
|||
|
[Display(Name = "LCAStatusConfirmed", ResourceType = typeof(Resource))]
|
|||
|
Confirmed,
|
|||
|
|
|||
|
[Display(Name = "LCAStatusCompleted", ResourceType = typeof(Resource))]
|
|||
|
Completed
|
|||
|
}
|
|||
|
}
|
|||
|
|