10 lines
278 B
C#
10 lines
278 B
C#
namespace Tnb.EquipMgr.Entities.Dto
|
|
{
|
|
public class EquipTechnologyParameterQueryOutput
|
|
{
|
|
public string? id { get; set; }
|
|
public string? name { get; set; }
|
|
public string? definition { get; set; }
|
|
public string? remark { get; set; }
|
|
}
|
|
} |