PageRenderTime 20ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

/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
Possible License(s): CC-BY-SA-3.0
  1. using System;
  2. namespace Bifrost.Samples.Shop.Mvc.Features.Products
  3. {
  4. public class Product
  5. {
  6. public Guid Id { get; set; }
  7. public string MaterialNumber { get; set; }
  8. public string Title { get; set; }
  9. public string Description { get; set; }
  10. public string Price { get; set; }
  11. }
  12. }