Can delete a store

This commit is contained in:
nicolas.dorier
2017-10-23 22:55:46 +09:00
parent 5f8407b4b1
commit 37c02d2539
5 changed files with 87 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
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;
}
}
}