Adopt dotnet core editorconfig, big reformating

This commit is contained in:
nicolas.dorier
2017-10-27 17:53:04 +09:00
parent b10da976c7
commit 4deb7c3270
199 changed files with 66960 additions and 46532 deletions

View File

@@ -7,53 +7,53 @@ namespace BTCPayServer.Models.InvoicingModels
{
public class InvoicesModel
{
public int Skip
{
get; set;
}
public int Count
{
get; set;
}
public string SearchTerm
{
get; set;
}
public int Skip
{
get; set;
}
public int Count
{
get; set;
}
public string SearchTerm
{
get; set;
}
public List<InvoiceModel> Invoices
{
get; set;
} = new List<InvoiceModel>();
public string StatusMessage
{
get;
set;
}
}
public List<InvoiceModel> Invoices
{
get; set;
} = new List<InvoiceModel>();
public string StatusMessage
{
get;
set;
}
}
public class InvoiceModel
{
public DateTimeOffset Date
{
get; set;
}
public class InvoiceModel
{
public DateTimeOffset Date
{
get; set;
}
public string InvoiceId
{
get; set;
}
public string InvoiceId
{
get; set;
}
public string Status
{
get; set;
}
public string AmountCurrency
{
get; set;
}
public string StatusMessage
{
get; set;
}
}
public string Status
{
get; set;
}
public string AmountCurrency
{
get; set;
}
public string StatusMessage
{
get; set;
}
}
}