ProductKeys.cs 263 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.Models2
  4. {
  5. public partial class ProductKeys
  6. {
  7. public string Name { get; set; }
  8. public string ColIds { get; set; }
  9. public string ProductIds { get; set; }
  10. }
  11. }