StableVersion4.3/HL_FristAidPlatform_Help/Model/ProportionModel.cs

19 lines
356 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_Help
{
/// <summary>
/// 统计比例
/// </summary>
public class ProportionModel
{
public string name { get; set; }
public string value { get; set; } = "0.00";
}
}