Add project files.

This commit is contained in:
yawaflua
2024-03-07 18:11:59 +03:00
parent aee40c9686
commit 9f29952f71
19 changed files with 736 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Lava.NET.Types.LavaAPI
{
public class WebhookResponse : IBase
{
public int type { get; set; }
public string invoice_id { get; set; }
public string order_id { get; set; }
public string status { get; set; }
public int pay_time { get; set; }
public string amount { get; set; }
public string custom_fields { get; set; }
public string credited { get; set; }
public string merchant_id { get; set; }
public string merchant_name { get; set; }
public string sign { get; set; }
}
}