Jonathan Ouellette 580e90f6a2 initial add
2022-09-27 14:10:30 -07:00

15 lines
262 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Fab2ApprovalSystem.Models
{
public class TestModel
{
public string Name { get; set; }
public List<string> Countries { get; set; }
}
}