11 lines
315 B
C#
11 lines
315 B
C#
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; }
|
|
}
|
|
} |