2021-08-12 03:44:15 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2021-08-15 09:38:48 +02:00
|
|
|
|
namespace Teknik.BillingCore.Models
|
2021-08-12 03:44:15 +02:00
|
|
|
|
{
|
|
|
|
|
public class Product
|
|
|
|
|
{
|
2021-08-15 09:38:48 +02:00
|
|
|
|
public string ProductId { get; set; }
|
2021-08-12 03:44:15 +02:00
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public string Description { get; set; }
|
2021-08-15 09:38:48 +02:00
|
|
|
|
public List<Price> Prices { get; set; }
|
|
|
|
|
|
|
|
|
|
public Product()
|
|
|
|
|
{
|
|
|
|
|
Prices = new List<Price>();
|
|
|
|
|
}
|
2021-08-12 03:44:15 +02:00
|
|
|
|
}
|
|
|
|
|
}
|