Files
WebShop_Fluxon/ShopAPI/ShopAPI/Models/Payment.cs
2026-03-15 02:20:16 +01:00

14 lines
425 B
C#

namespace ShopAPI.Models
{
public class Payment
{
public int Id { get; set; }
public decimal Amount { get; set; }
public string Method { get; set; } = string.Empty; //"CreditCard", "PayPal"
public string Status { get; set; } = "Pending";
public DateTime PaidAt { get; set; }
public int OrderId { get; set; }
public Order Order { get; set; } = null!;
}
}