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.
17 lines
503 B
C#
17 lines
503 B
C#
namespace Mesnac.Action.ChemicalWeighing.LjWeight
|
|
{
|
|
|
|
//select Id,Name,ActWeight,HighLevel,HighWeight,LowLevel,LowWeight from WeightSetting;
|
|
public class WeightSettingView
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
|
|
public float ActWeight { get; set; }
|
|
public float HighLevel { get; set; }
|
|
public float HighWeight { get; set; }
|
|
public float LowLevel { get; set; }
|
|
public float LowWeight { get; set; }
|
|
|
|
}
|
|
} |