15 lines
262 B
C#
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; }
|
|
|
|
}
|
|
} |