Files
Web_AUTSDATA_Mvc_Prod/AUTS.Web/Models/Treeprice.cs

14 lines
274 B
C#
Raw Normal View History

2025-11-20 13:11:05 +08:00
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; }
}
}