mirror of
https://git.teknik.io/Teknikode/Teknik.git
synced 2023-08-02 14:16:22 +02:00
22 lines
547 B
C#
22 lines
547 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Teknik.BillingCore.Models
|
|
{
|
|
public class Price
|
|
{
|
|
public string ProductId { get; set; }
|
|
|
|
public string Id { get; set; }
|
|
public string Name { get; set; }
|
|
public bool Recommended { get; set; }
|
|
public decimal? Amount { get; set; }
|
|
public string Currency { get; set; }
|
|
public long Storage { get; set; }
|
|
public Interval Interval { get; set; }
|
|
}
|
|
}
|