10 lines
201 B
C#
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; }
|
|
}
|
|
}
|