using System.Collections.Generic;

namespace Fab2ApprovalSystem.Models;

public class TestModel {

    public string Name { get; set; }
    public List<string> Countries { get; set; }

}