using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TeamAAS_VP.Models { public class ImageParameters { private string _SNCode; /// /// SN /// public string SNCode { get { return _SNCode; } set { _SNCode = value; } } } }