10 lines
202 B
C#
10 lines
202 B
C#
namespace ChatMvc.Models
|
|
{
|
|
public class Payment
|
|
{
|
|
public int Amount { get; set; }
|
|
public string Currency { get; set; }
|
|
public string Description { get; set; }
|
|
}
|
|
}
|