Initial commit

This commit is contained in:
2026-07-03 16:37:12 +07:00
commit 63b8c1ea8b
1931 changed files with 640587 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
using System.ComponentModel.DataAnnotations;
using System.Text.Json.Serialization;
namespace RobotNet.VDA5050.Factsheet;
public class PhysicalParameter
{
[Required]
[JsonPropertyName("speedMin")]
public double SpeedMin { get; set; }
[Required]
[JsonPropertyName("speedMax")]
public double SpeedMax { get; set; }
[JsonPropertyName("angularSpeedMin")]
public double AngularSpeedMin { get; set; }
[JsonPropertyName("angularSpeedMax")]
public double AngularSpeedMax { get; set; }
[Required]
[JsonPropertyName("accelerationMax")]
public double AccelerationMax { get; set; }
[Required]
[JsonPropertyName("decelerationMax")]
public double DecelerationMax { get; set; }
[JsonPropertyName("heightMin")]
public double HeightMin { get; set; }
[Required]
[JsonPropertyName("heightMax")]
public double HeightMax { get; set; }
[Required]
[JsonPropertyName("width")]
public double Width { get; set; }
[Required]
[JsonPropertyName("length")]
public double Length { get; set; }
}