11 lines
354 B
C#
11 lines
354 B
C#
namespace GrossesMitainesAPI.Models;
|
|
public class ChargesModel {
|
|
public string Token { get; set; }
|
|
public string Description { get; set; }
|
|
public long AmountInCents { get; set; }
|
|
public string CurrencyCode { get; set; }
|
|
public string Name { get; set; }
|
|
public string Email { get; set; }
|
|
public string Phone { get; set; }
|
|
}
|