using System.Collections.Generic; namespace BTCPayServer.Models { public class PostRedirectViewModel { public string AspAction { get; set; } public string AspController { get; set; } public string FormUrl { get; set; } public bool AllowExternal { get; set; } public MultiValueDictionary FormParameters { get; set; } = new(); public Dictionary RouteParameters { get; set; } = new(); } }