Product.cs
468 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MoyaAdminLib
{
public class Product
{
private string productName;
public string Name
{
get { return productName; }
set { productName = value; }
}
private int productId;
public int Id
{
get { return productId;}
set { productId = value; }
}
}
}