Align .editorconfig files Move Controller logic to DMO classes GlobalVars.AppSettings = Models.AppSettings.GetFromConfigurationManager(); Question EditorConfig Project level editorconfig Format White Spaces AppSetting when EnvironmentVariable not set Corrective Actions Tests Schedule Actions Tests DMO Tests Controller Tests Get ready to use VSCode IDE
11 lines
264 B
C#
11 lines
264 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Fab2ApprovalSystem.ViewModels;
|
|
|
|
public class LotStatusOptionViewModel {
|
|
|
|
public int LotStatusOptionID { get; set; }
|
|
[Display(Name = "Lot Status")]
|
|
public string LotStatusOption { get; set; }
|
|
|
|
} |