Add-Migration

This commit is contained in:
MarcEricMartel
2022-12-04 09:10:10 -08:00
parent 21cb3f0aa3
commit 514c5bd6b0
21 changed files with 280 additions and 9576 deletions

View File

@@ -1,5 +1,9 @@
namespace GrossesMitainesAPI.Models;
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; }