Commit bd4bab2d by Pedro Cavaleiro

Revert "Added Function GetClientsPrducts"

This reverts commit dcfae498.
parent dcfae498
No preview for this file type
...@@ -26,7 +26,7 @@ namespace WHMCS_API ...@@ -26,7 +26,7 @@ namespace WHMCS_API
/// <returns>Returns the result of the call /// <returns>Returns the result of the call
/// The userid string for the session Session["uid"] /// The userid string for the session Session["uid"]
/// The passwordhash for the session Session["upw"]</returns> /// The passwordhash for the session Session["upw"]</returns>
public ValidateLogin.ValidateLogin ValidateLogin(string Email, string Password) public ValidateLogin ValidateLogin(string Email, string Password)
{ {
NameValueCollection data = new NameValueCollection() NameValueCollection data = new NameValueCollection()
{ {
...@@ -35,7 +35,7 @@ namespace WHMCS_API ...@@ -35,7 +35,7 @@ namespace WHMCS_API
{ EnumUtil.GetString(APIEnums.ValidateLoginParams.Password), Password } { EnumUtil.GetString(APIEnums.ValidateLoginParams.Password), Password }
}; };
return JsonConvert.DeserializeObject<ValidateLogin.ValidateLogin>(_call.MakeCall(data)); return JsonConvert.DeserializeObject<ValidateLogin>(_call.MakeCall(data));
} }
/// <summary> /// <summary>
...@@ -96,7 +96,7 @@ namespace WHMCS_API ...@@ -96,7 +96,7 @@ namespace WHMCS_API
/// <param name="ClientEmail">The client Email to search</param> /// <param name="ClientEmail">The client Email to search</param>
/// <param name="Stats">Get extended stats for the client</param> /// <param name="Stats">Get extended stats for the client</param>
/// <returns>All details of the client</returns> /// <returns>All details of the client</returns>
public GetClientsDetails.GetClientsDetails GetClientsDetails(int ClientID = -1, string ClientEmail = "", bool Stats = false) public GetClientsDetails GetClientsDetails(int ClientID = -1, string ClientEmail = "", bool Stats = false)
{ {
if (ClientID == -1 && ClientEmail == "") if (ClientID == -1 && ClientEmail == "")
throw new Exception("ClientID or ClientEmail needed"); throw new Exception("ClientID or ClientEmail needed");
...@@ -114,10 +114,11 @@ namespace WHMCS_API ...@@ -114,10 +114,11 @@ namespace WHMCS_API
string req = _call.MakeCall(data); string req = _call.MakeCall(data);
JObject result = JObject.Parse(req); JObject result = JObject.Parse(req);
if (result["result"].ToString() == "success") if (result["result"].ToString() == "success")
return JsonConvert.DeserializeObject<GetClientsDetails.GetClientsDetails>(req); return JsonConvert.DeserializeObject<GetClientsDetails>(req);
else else
throw new Exception("An API Error occurred", new Exception(result["message"].ToString())); throw new Exception("An API Error occurred", new Exception(result["message"].ToString()));
} }
<<<<<<< HEAD
/// <summary> /// <summary>
/// Get the orders (for all clients/specific client/specific order/specific status) /// Get the orders (for all clients/specific client/specific order/specific status)
...@@ -128,7 +129,7 @@ namespace WHMCS_API ...@@ -128,7 +129,7 @@ namespace WHMCS_API
/// <param name="UserID">Find orders for a specific client id</param> /// <param name="UserID">Find orders for a specific client id</param>
/// <param name="Status">Find orders for a specific status</param> /// <param name="Status">Find orders for a specific status</param>
/// <returns>In a modelm, total results, start number, the number of results returned</returns> /// <returns>In a modelm, total results, start number, the number of results returned</returns>
public GetOrders.GetOrders GetOrders(int LimitStart = 0, int LimitNumber = 25, int OrderID = -1, int UserID = -1, string Status = "") public GetOrders GetOrders(int LimitStart = 0, int LimitNumber = 25, int OrderID = -1, int UserID = -1, string Status = "")
{ {
NameValueCollection data = new NameValueCollection() NameValueCollection data = new NameValueCollection()
{ {
...@@ -143,10 +144,10 @@ namespace WHMCS_API ...@@ -143,10 +144,10 @@ namespace WHMCS_API
if (Status != "") if (Status != "")
data.Add(EnumUtil.GetString(APIEnums.GetOrdersParams.Status), Status); data.Add(EnumUtil.GetString(APIEnums.GetOrdersParams.Status), Status);
return JsonConvert.DeserializeObject<GetOrders.GetOrders>(_call.MakeCall(data)); return JsonConvert.DeserializeObject<GetOrders>(_call.MakeCall(data));
} }
public GetTransactions.GetTransactions GetTransactions(int InvoiceID = -1, int ClientID = -1, string TransactionID = "") public GetTransactions GetTransactions(int InvoiceID = -1, int ClientID = -1, string TransactionID = "")
{ {
NameValueCollection data = new NameValueCollection() NameValueCollection data = new NameValueCollection()
{ {
...@@ -159,31 +160,9 @@ namespace WHMCS_API ...@@ -159,31 +160,9 @@ namespace WHMCS_API
if (TransactionID != "") if (TransactionID != "")
data.Add(EnumUtil.GetString(APIEnums.GetTransactionsParams.TransactionID), TransactionID); data.Add(EnumUtil.GetString(APIEnums.GetTransactionsParams.TransactionID), TransactionID);
return JsonConvert.DeserializeObject<GetTransactions.GetTransactions>(_call.MakeCall(data)); return JsonConvert.DeserializeObject<GetTransactions>(_call.MakeCall(data));
}
public string GetClientsProducts(int LimitStart = 0, int LimitNum = 25, int ClientID = -1, int ServiceID = -1, int ProductID = -1, string Domain = "", string Username = "")
{
NameValueCollection data = new NameValueCollection()
{
{ "action", APIEnums.Actions.GetClientsProducts.ToString() },
{ EnumUtil.GetString(APIEnums.GetClientsProductsParams.ResultsStartOffset), LimitStart.ToString()},
{ EnumUtil.GetString(APIEnums.GetClientsProductsParams.ResultsLimit), LimitNum.ToString()},
};
if (ClientID != -1)
data.Add(EnumUtil.GetString(APIEnums.GetClientsProductsParams.ClientID), ClientID.ToString());
if (ServiceID != -1)
data.Add(EnumUtil.GetString(APIEnums.GetClientsProductsParams.ServiceID), ServiceID.ToString());
if (ProductID != -1)
data.Add(EnumUtil.GetString(APIEnums.GetClientsProductsParams.ProductID), ProductID.ToString());
if (Domain != "")
data.Add(EnumUtil.GetString(APIEnums.GetClientsProductsParams.Domain), Domain);
if (Username != "")
data.Add(EnumUtil.GetString(APIEnums.GetClientsProductsParams.Username), Username);
return _call.MakeCall(data);
//return JsonConvert.DeserializeObject<DomainWhoIs>(_call.MakeCall(data));
} }
=======
>>>>>>> origin/master
} }
} }
...@@ -59,6 +59,7 @@ namespace WHMCS_API ...@@ -59,6 +59,7 @@ namespace WHMCS_API
[StringValue("stats")] Stats [StringValue("stats")] Stats
} }
<<<<<<< HEAD
public enum GetOrdersParams public enum GetOrdersParams
{ {
[StringValue("limitstart")] LimitStart, [StringValue("limitstart")] LimitStart,
...@@ -75,17 +76,8 @@ namespace WHMCS_API ...@@ -75,17 +76,8 @@ namespace WHMCS_API
[StringValue("transid")] TransactionID [StringValue("transid")] TransactionID
} }
public enum GetClientsProductsParams =======
{ >>>>>>> origin/master
[StringValue("limitstart")] ResultsStartOffset,
[StringValue("limitnum")] ResultsLimit,
[StringValue("clientid")] ClientID,
[StringValue("serviceid")] ServiceID,
[StringValue("pid")] ProductID,
[StringValue("domain")] Domain,
[StringValue("username2")] Username
}
/// <summary> /// <summary>
/// Actions Supported by the WHMCS API that are implemented in this Wrapper /// Actions Supported by the WHMCS API that are implemented in this Wrapper
/// </summary> /// </summary>
...@@ -94,10 +86,13 @@ namespace WHMCS_API ...@@ -94,10 +86,13 @@ namespace WHMCS_API
[StringValue("ValidateLogin")] ValidateLogin, [StringValue("ValidateLogin")] ValidateLogin,
[StringValue("DomainWhois")] DomainWhois, [StringValue("DomainWhois")] DomainWhois,
[StringValue("AddClient")] AddClient, [StringValue("AddClient")] AddClient,
<<<<<<< HEAD
[StringValue("GetClientsDetails")] GetClientsDetails, [StringValue("GetClientsDetails")] GetClientsDetails,
[StringValue("GetOrders")] GetOrders, [StringValue("GetOrders")] GetOrders,
[StringValue("GetTransactions")] GetTransactions, [StringValue("GetTransactions")] GetTransactions
[StringValue("GetClientsProducts")] GetClientsProducts =======
[StringValue("GetClientsDetails")] GetClientsDetails
>>>>>>> origin/master
} }
} }
......
...@@ -5,7 +5,7 @@ using System.IO; ...@@ -5,7 +5,7 @@ using System.IO;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
namespace WHMCS_API.GetClientsDetails namespace WHMCS_API
{ {
public class Client public class Client
{ {
......
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WHMCS_API.GetClientsProducts
{
public class Customfields
{
[JsonProperty("customfield")]
public IList<object> CustomField { get; set; }
}
public class Configoptions
{
[JsonProperty("configoption")]
public IList<object> ConfigOption { get; set; }
}
public class Product
{
[JsonProperty("id")]
public string ID { get; set; }
[JsonProperty("clientid")]
public string ClientID { get; set; }
[JsonProperty("orderid")]
public string OrderID { get; set; }
[JsonProperty("pid")]
public string ProductID { get; set; }
[JsonProperty("regdate")]
public string RegistryDate { get; set; }
[JsonProperty("name")]
public string Name { get; set; }
[JsonProperty("translated_name")]
public string TranslatedName { get; set; }
[JsonProperty("groupname")]
public string GroupName { get; set; }
[JsonProperty("translated_groupname")]
public string TranslatedGroupName { get; set; }
[JsonProperty("domain")]
public string Domain { get; set; }
[JsonProperty("dedicatedip")]
public string DedicatedIP { get; set; }
[JsonProperty("serverid")]
public string ServerID { get; set; }
[JsonProperty("servername")]
public string ServerName { get; set; }
[JsonProperty("serverip")]
public string ServerIP { get; set; }
[JsonProperty("serverhostname")]
public string ServerHostname { get; set; }
[JsonProperty("suspensionreason")]
public string SuspensionReason { get; set; }
[JsonProperty("firstpaymentamount")]
public string FirstPaymentAmount { get; set; }
[JsonProperty("recurringamount")]
public string RecurringAmount { get; set; }
[JsonProperty("paymentmethod")]
public string PaymentMethod { get; set; }
[JsonProperty("paymentmethodname")]
public string PaymentMethodName { get; set; }
[JsonProperty("billingcycle")]
public string BillingCycle { get; set; }
[JsonProperty("nextduedate")]
public string NextDueDate { get; set; }
[JsonProperty("status")]
public string Status { get; set; }
[JsonProperty("username")]
public string username { get; set; }
[JsonProperty("password")]
public string Username { get; set; }
[JsonProperty("subscriptionid")]
public string Subscription { get; set; }
[JsonProperty("promoid")]
public string PromotionID { get; set; }
[JsonProperty("overideautosuspend")]
public string OverideAutoSuspend { get; set; }
[JsonProperty("overidesuspenduntil")]
public string OverideSuspendUntil { get; set; }
[JsonProperty("ns1")]
public string Nameserver1 { get; set; }
[JsonProperty("ns2")]
public string Nameserver2 { get; set; }
[JsonProperty("assignedips")]
public string AssignedIPs { get; set; }
[JsonProperty("notes")]
public string Notes { get; set; }
[JsonProperty("diskusage")]
public string DiskUsage { get; set; }
[JsonProperty("disklimit")]
public string DiskLimit { get; set; }
[JsonProperty("bwusage")]
public string BandwithUsage { get; set; }
[JsonProperty("bwlimit")]
public string BandwithLimit { get; set; }
[JsonProperty("lastupdate")]
public string LastUpdate { get; set; }
[JsonProperty("customfields")]
public Customfields CustomFields { get; set; }
[JsonProperty("configoptions")]
public Configoptions ConfigOptions { get; set; }
}
public class Products
{
[JsonProperty("product")]
public IList<Product> Product { get; set; }
}
public class GetClientsProducts
{
[JsonProperty("result")]
public string Result { get; set; }
[JsonProperty("clientid")]
public string ClientID { get; set; }
[JsonProperty("serviceid")]
public object ServiceID { get; set; }
[JsonProperty("pid")]
public object ProductID { get; set; }
[JsonProperty("domain")]
public object Domain { get; set; }
[JsonProperty("totalresults")]
public string TotalResults { get; set; }
[JsonProperty("startnumber")]
public int StartNumber { get; set; }
[JsonProperty("numreturned")]
public int NumberReturned { get; set; }
[JsonProperty("products")]
public Products Products { get; set; }
}
}
...@@ -5,160 +5,160 @@ using System.IO; ...@@ -5,160 +5,160 @@ using System.IO;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
namespace WHMCS_API.GetOrders namespace WHMCS_API
{ {
public class Lineitem public class Lineitem
{ {
[JsonProperty("type")] [JsonProperty("type")]
public string Type { get; set; } public string type { get; set; }
[JsonProperty("relid")] [JsonProperty("relid")]
public string relid { get; set; } public string relid { get; set; }
[JsonProperty("producttype")] [JsonProperty("producttype")]
public string ProductType { get; set; } public string producttype { get; set; }
[JsonProperty("product")] [JsonProperty("product")]
public string Product { get; set; } public string product { get; set; }
[JsonProperty("domain")] [JsonProperty("domain")]
public string Domain { get; set; } public string domain { get; set; }
[JsonProperty("billingcycle")] [JsonProperty("billingcycle")]
public string BillingCycle { get; set; } public string billingcycle { get; set; }
[JsonProperty("amount")] [JsonProperty("amount")]
public string Amount { get; set; } public string amount { get; set; }
[JsonProperty("status")] [JsonProperty("status")]
public string Status { get; set; } public string status { get; set; }
[JsonProperty("dnsmanagement")] [JsonProperty("dnsmanagement")]
public string DNSManagment { get; set; } public string dnsmanagement { get; set; }
[JsonProperty("emailforwarding")] [JsonProperty("emailforwarding")]
public string EmailFowarding { get; set; } public string emailforwarding { get; set; }
[JsonProperty("idprotection")] [JsonProperty("idprotection")]
public string IDProtection { get; set; } public string idprotection { get; set; }
} }
public class Lineitems public class Lineitems
{ {
[JsonProperty("lineitem")] [JsonProperty("lineitem")]
public IList<Lineitem> LineItem { get; set; } public IList<Lineitem> lineitem { get; set; }
} }
public class Order public class Order
{ {
[JsonProperty("id")] [JsonProperty("id")]
public string ID { get; set; } public string id { get; set; }
[JsonProperty("ordernum")] [JsonProperty("ordernum")]
public string OrderNumber { get; set; } public string ordernum { get; set; }
[JsonProperty("userid")] [JsonProperty("userid")]
public string UserID { get; set; } public string userid { get; set; }
[JsonProperty("contactid")] [JsonProperty("contactid")]
public string ContactID { get; set; } public string contactid { get; set; }
[JsonProperty("date")] [JsonProperty("date")]
public string Date { get; set; } public string date { get; set; }
[JsonProperty("nameservers")] [JsonProperty("nameservers")]
public string NameServers { get; set; } public string nameservers { get; set; }
[JsonProperty("transfersecret")] [JsonProperty("transfersecret")]
public string TransfererSecret { get; set; } public string transfersecret { get; set; }
[JsonProperty("renewals")] [JsonProperty("renewals")]
public string RenewalsSecret { get; set; } public string renewals { get; set; }
[JsonProperty("promocode")] [JsonProperty("promocode")]
public string PromoCode { get; set; } public string promocode { get; set; }
[JsonProperty("promotype")] [JsonProperty("promotype")]
public string PromoType { get; set; } public string promotype { get; set; }
[JsonProperty("promovalue")] [JsonProperty("promovalue")]
public string PromoValue { get; set; } public string promovalue { get; set; }
[JsonProperty("orderdata")] [JsonProperty("orderdata")]
public string OrderData { get; set; } public string orderdata { get; set; }
[JsonProperty("amount")] [JsonProperty("amount")]
public string Amount { get; set; } public string amount { get; set; }
[JsonProperty("paymentmethod")] [JsonProperty("paymentmethod")]
public string PaymentMethod { get; set; } public string paymentmethod { get; set; }
[JsonProperty("invoiceid")] [JsonProperty("invoiceid")]
public string InvoiceID { get; set; } public string invoiceid { get; set; }
[JsonProperty("status")] [JsonProperty("status")]
public string Status { get; set; } public string status { get; set; }
[JsonProperty("ipaddress")] [JsonProperty("ipaddress")]
public string IPAddress { get; set; } public string ipaddress { get; set; }
[JsonProperty("fraudmodule")] [JsonProperty("fraudmodule")]
public string FraudModule { get; set; } public string fraudmodule { get; set; }
[JsonProperty("fraudoutput")] [JsonProperty("fraudoutput")]
public string FraudOutput { get; set; } public string fraudoutput { get; set; }
[JsonProperty("notes")] [JsonProperty("notes")]
public string Notes { get; set; } public string notes { get; set; }
[JsonProperty("paymentmethodname")] [JsonProperty("paymentmethodname")]
public string PaymentMethodName { get; set; } public string paymentmethodname { get; set; }
[JsonProperty("paymentstatus")] [JsonProperty("paymentstatus")]
public object PaymentStatus { get; set; } public object paymentstatus { get; set; }
[JsonProperty("name")] [JsonProperty("name")]
public string Name { get; set; } public string name { get; set; }
[JsonProperty("currencyprefix")] [JsonProperty("currencyprefix")]
public string CurrencyPrefix { get; set; } public string currencyprefix { get; set; }
[JsonProperty("currencysuffix")] [JsonProperty("currencysuffix")]
public string CurrencySuffix { get; set; } public string currencysuffix { get; set; }
[JsonProperty("frauddata")] [JsonProperty("frauddata")]
public string FraudData { get; set; } public string frauddata { get; set; }
[JsonProperty("lineitems")] [JsonProperty("lineitems")]
public Lineitems LineItems { get; set; } public Lineitems lineitems { get; set; }
} }
public class Orders public class Orders
{ {
[JsonProperty("order")] [JsonProperty("order")]
public IList<Order> Order { get; set; } public IList<Order> order { get; set; }
} }
public class GetOrders public class GetOrders
{ {
[JsonProperty("result")] [JsonProperty("result")]
public string Result { get; set; } public string result { get; set; }
[JsonProperty("totalresults")] [JsonProperty("totalresults")]
public string TotalResults { get; set; } public string totalresults { get; set; }
[JsonProperty("startnumber")] [JsonProperty("startnumber")]
public int StartNumber { get; set; } public int startnumber { get; set; }
[JsonProperty("numreturned")] [JsonProperty("numreturned")]
public int NumberReturned { get; set; } public int numreturned { get; set; }
[JsonProperty("orders")] [JsonProperty("orders")]
public Orders Orders { get; set; } public Orders orders { get; set; }
} }
} }
\ No newline at end of file
...@@ -5,75 +5,75 @@ using System.Linq; ...@@ -5,75 +5,75 @@ using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace WHMCS_API.GetTransactions namespace WHMCS_API
{ {
public class Transaction public class Transaction
{ {
[JsonProperty("id")] [JsonProperty("id")]
public string ID { get; set; } public string id { get; set; }
[JsonProperty("userid")] [JsonProperty("userid")]
public string UserID { get; set; } public string userid { get; set; }
[JsonProperty("currency")] [JsonProperty("currency")]
public string Currency { get; set; } public string currency { get; set; }
[JsonProperty("gateway")] [JsonProperty("gateway")]
public string PaymentGateway { get; set; } public string gateway { get; set; }
[JsonProperty("date")] [JsonProperty("date")]
public string Date { get; set; } public string date { get; set; }
[JsonProperty("description")] [JsonProperty("description")]
public string Description { get; set; } public string description { get; set; }
[JsonProperty("amountin")] [JsonProperty("amountin")]
public string AmountIn { get; set; } public string amountin { get; set; }
[JsonProperty("fees")] [JsonProperty("fees")]
public string Fees { get; set; } public string fees { get; set; }
[JsonProperty("amountout")] [JsonProperty("amountout")]
public string AmountOut { get; set; } public string amountout { get; set; }
[JsonProperty("rate")] [JsonProperty("rate")]
public string Rate { get; set; } public string rate { get; set; }
[JsonProperty("transid")] [JsonProperty("transid")]
public string TransactionID { get; set; } public string transid { get; set; }
[JsonProperty("invoiceid")] [JsonProperty("invoiceid")]
public string InvoiceID { get; set; } public string invoiceid { get; set; }
[JsonProperty("refundid")] [JsonProperty("refundid")]
public string RefundID { get; set; } public string refundid { get; set; }
} }
public class Transactions public class Transactions
{ {
[JsonProperty("transaction")] [JsonProperty("transaction")]
public IList<Transaction> Transaction { get; set; } public IList<Transaction> transaction { get; set; }
} }
public class GetTransactions public class GetTransactions
{ {
[JsonProperty("result")] [JsonProperty("result")]
public string Result { get; set; } public string result { get; set; }
[JsonProperty("totalresults")] [JsonProperty("totalresults")]
public int TotalResults { get; set; } public int totalresults { get; set; }
[JsonProperty("startnumber")] [JsonProperty("startnumber")]
public int StartNumber { get; set; } public int startnumber { get; set; }
[JsonProperty("numreturned")] [JsonProperty("numreturned")]
public int NumberReturned { get; set; } public int numreturned { get; set; }
[JsonProperty("transactions")] [JsonProperty("transactions")]
public Transactions Transactions { get; set; } public Transactions transactions { get; set; }
} }
} }
...@@ -5,7 +5,7 @@ using System.Linq; ...@@ -5,7 +5,7 @@ using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace WHMCS_API.ValidateLogin namespace WHMCS_API
{ {
public class ValidateLogin public class ValidateLogin
{ {
......
...@@ -44,14 +44,20 @@ ...@@ -44,14 +44,20 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Compile Include="AddClient.cs" /> <Compile Include="AddClient.cs" />
<<<<<<< HEAD
<Compile Include="GetClientsDetails.cs" /> <Compile Include="GetClientsDetails.cs" />
=======
<Compile Include="AddClientsDetails.cs" />
>>>>>>> origin/master
<Compile Include="API.cs" /> <Compile Include="API.cs" />
<Compile Include="Call.cs" /> <Compile Include="Call.cs" />
<Compile Include="DomainWhoIs.cs" /> <Compile Include="DomainWhoIs.cs" />
<Compile Include="Enums.cs" /> <Compile Include="Enums.cs" />
<Compile Include="GetClientsProducts.cs" /> <<<<<<< HEAD
<Compile Include="GetOrders.cs" /> <Compile Include="GetOrders.cs" />
<Compile Include="GetTransactions.cs" /> <Compile Include="GetTransactions.cs" />
=======
>>>>>>> origin/master
<Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="ValidateLogin.cs" /> <Compile Include="ValidateLogin.cs" />
</ItemGroup> </ItemGroup>
......
No preview for this file type
No preview for this file type
8d323b1218d18e3b2547d1c60e0ba30d4b3090ea a9211ff72989fdd7a0227985eee9222a9f5fb034
...@@ -4,3 +4,4 @@ C:\Users\pmcav\Source\Repos\PCDev\WHMCS API\bin\Debug\Newtonsoft.Json.dll ...@@ -4,3 +4,4 @@ C:\Users\pmcav\Source\Repos\PCDev\WHMCS API\bin\Debug\Newtonsoft.Json.dll
C:\Users\pmcav\Source\Repos\PCDev\WHMCS API\bin\Debug\Newtonsoft.Json.xml C:\Users\pmcav\Source\Repos\PCDev\WHMCS API\bin\Debug\Newtonsoft.Json.xml
C:\Users\pmcav\Source\Repos\PCDev\WHMCS API\obj\Debug\WHMCS API.dll C:\Users\pmcav\Source\Repos\PCDev\WHMCS API\obj\Debug\WHMCS API.dll
C:\Users\pmcav\Source\Repos\PCDev\WHMCS API\obj\Debug\WHMCS API.pdb C:\Users\pmcav\Source\Repos\PCDev\WHMCS API\obj\Debug\WHMCS API.pdb
C:\Users\pmcav\Source\Repos\PCDev\WHMCS API\obj\Debug\WHMCS API.csprojResolveAssemblyReference.cache
No preview for this file type
No preview for this file type
67d26d3f8e599944ac917887812327b96760ec4f <<<<<<< HEAD
6c3f1616b75e387981e8bc28f6eca8ccfc0bd29b
=======
5eb4fb84540e61ea2545bd966a0bb918182bb6f4
>>>>>>> origin/master
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment