14 lines
274 B
C#
14 lines
274 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Web;
|
|||
|
|
|
|||
|
|
namespace AUTS.Web.Models
|
|||
|
|
{
|
|||
|
|
public class Treeprice
|
|||
|
|
{
|
|||
|
|
public string id { get; set; }
|
|||
|
|
public int pId { get; set; }
|
|||
|
|
public string name { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|