ProductType.cs 243 B

123456789101112
  1. namespace api_asp.net.models
  2. {
  3. public class ProductType
  4. {
  5. public int ID { get; set; }
  6. public string Title { get; set; }
  7. public override string ToString()
  8. {
  9. return Title;
  10. }
  11. }
  12. }