Fix CreateInvoice screen, can now select the store

This commit is contained in:
NicolasDorier
2017-09-14 00:13:22 +09:00
parent 467ecd0923
commit d039b5f6ff
3 changed files with 32 additions and 5 deletions

View File

@@ -1,4 +1,5 @@
using System;
using Microsoft.AspNetCore.Mvc.Rendering;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
@@ -40,5 +41,11 @@ namespace BTCPayServer.Models.InvoicingModels
{
get; set;
}
public SelectList Stores
{
get;
set;
}
}
}