MVCPostall/Postall/Models/Payment.cs
2025-01-26 22:22:36 -03:00

10 lines
201 B
C#

namespace Blinks.Models
{
public class Payment
{
public int Amount { get; set; }
public string Currency { get; set; }
public string Description { get; set; }
}
}