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
10 lines
189 B
C#
10 lines
189 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Fab2ApprovalSystem.Models;
|
|
|
|
public class TestModel {
|
|
|
|
public string Name { get; set; }
|
|
public List<string> Countries { get; set; }
|
|
|
|
} |