Renaming
start.bat added
This commit is contained in:
31
CardMarketBot/LexofficeApiAddressesBuilder.cs
Normal file
31
CardMarketBot/LexofficeApiAddressesBuilder.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
// See https://aka.ms/new-console-template for more information
|
||||
|
||||
|
||||
/*
|
||||
*
|
||||
* referalPage: /de/OnePiece
|
||||
username: Skywalkerex
|
||||
userPassword: Magnatpower310!!
|
||||
/de/OnePiece/PostGetAction/User_Login
|
||||
|
||||
curbpJUJmtup1t.Tq0awbHIhIRwhzMW7vrsWxLAJu.pI9X4r
|
||||
*/
|
||||
|
||||
namespace CardmarketBot
|
||||
{
|
||||
static class LexofficeApiAddressesBuilder
|
||||
{
|
||||
private static string BaseAddress = @"https://api.lexoffice.io";
|
||||
private static string Invoice = "v1/invoices";
|
||||
|
||||
public static string InvoiceUri(string id)
|
||||
{
|
||||
return $"{BaseAddress}/{Invoice}/{id}";
|
||||
}
|
||||
|
||||
public static string CreateInvoice()
|
||||
{
|
||||
return $"{BaseAddress}/{Invoice}";
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user