summaryrefslogtreecommitdiff
path: root/Models/UnderwearBundle.cs
blob: 1f451e6377762e5b40e3cdeeb19b989d3b45845b (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace MyDarling.Models
{
	public class UnderwearBundle
	{
		public int Id { get; set; }
		public string Name { get; set; } = "My Darling Bundle";
		public List<Figure> Figures { get; set; } = new List<Figure>();
		public string Description { get; set; } = string.Empty;
		public decimal Price { get; set; }
	}
}