ImageParameters.cs 355 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace TeamAAS_VP.Models
  7. {
  8. public class ImageParameters
  9. {
  10. private string _SNCode;
  11. /// <summary>
  12. /// SN
  13. /// </summary>
  14. public string SNCode
  15. {
  16. get { return _SNCode; }
  17. set { _SNCode = value; }
  18. }
  19. }
  20. }