EnVisageOnline/Main/Source/EnVisage/Models/Entities/SystemAttribute.cs

23 lines
562 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using EnVisage.Code;
namespace EnVisage.Models.Entities
{
public class SystemAttributeModel
{
public enum Type
{
[DisplayValue("System Attribute One")]
SystemAttributeOne = 1,
[DisplayValue("System Attribute Two")]
SystemAttributeTwo = 2,
[DisplayValue("Scenario Group")]
ScenarioGroup = 3,
[DisplayValue("Income Type")]
IncomeType = 4
}
}
}