use Serialize;
use crate::;
/// https://learn.microsoft.com/en-us/dotnet/api/documentformat.openxml.drawing.lineto?view=openxml-3.0.1
///
/// This element specifies the drawing of a straight line from the current pen position to the new point specified.
///
/// This line becomes part of the shape geometry, representing a side of the shape.
/// The coordinate system used when specifying this line is the path coordinate system.
///
/// Example
/// ```
/// <a:lnTo>
/// <a:pt x="2650602" y="1261641"/>
/// </a:lnTo>
/// ```