You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ocelot.Provider.Nacos/ProductApi/Models/ProductDto.cs

22 lines
418 B
C#

using System;
namespace ProductApi.Models
{
public class ProductDto
{
/// <summary>
/// 商品id
/// </summary>
public long Id { get; set; }
/// <summary>
/// 商品名称
/// </summary>
public string Name { get; set; }
/// <summary>
/// 商品价格
/// </summary>
public decimal Price { get; set; }
}
}