Initial commit

This commit is contained in:
2023-01-30 09:20:18 +01:00
commit 1b43dd3109
17 changed files with 662 additions and 0 deletions

9
Models/Card.cs Normal file
View File

@@ -0,0 +1,9 @@
namespace ThuisApi.Models
{
public class Card
{
public int CardId { get; set; }
public string Issuer { get; set; }
public string Code { get; set; }
}
}