using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace BTCPayServer.Models { public class ConfirmModel { public string Title { get; set; } public string Description { get; set; } public string Action { get; set; } public string ButtonClass { get; set; } = "btn-danger"; } }