/Source/Samples/Shop/Bifrost.Samples.Shop.Mvc/Features/Products/Product.cs
# · C# · 13 lines · 12 code · 1 blank · 0 comment · 0 complexity · ce23d7d900d77ac9e2a9dcc7f705c1b2 MD5 · raw file
- using System;
-
- namespace Bifrost.Samples.Shop.Mvc.Features.Products
- {
- public class Product
- {
- public Guid Id { get; set; }
- public string MaterialNumber { get; set; }
- public string Title { get; set; }
- public string Description { get; set; }
- public string Price { get; set; }
- }
- }