using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace ProductStore.Models
{
    public class Product
    {
        public int Id { get; set; }
        public string Name { get; set; }
        public string Category { get; set; }
        public decimal Price { get; set; }
    }
}
ASP.NET WebAPI 项目示例(增删改查)

相关文章:

  • 2021-08-01
  • 2021-09-10
  • 2021-11-10
  • 2021-09-21
  • 2021-12-04
  • 2021-10-16
猜你喜欢
  • 2022-01-19
  • 2021-08-07
  • 2022-12-23
  • 2022-12-23
  • 2021-12-17
  • 2022-12-23
  • 2021-09-28
相关资源
相似解决方案