15 lines
442 B
C#
15 lines
442 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace GrossesMitainesAPI.Models;
|
|
public class ChargesModel {
|
|
[Key]
|
|
public int Id { get; set; }
|
|
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; }
|
|
}
|