5 lines
104 B
C#
5 lines
104 B
C#
namespace SpaceGame.Api.Shared.Contracts;
|
|
|
|
public sealed record Vector3Dto(float X, float Y, float Z);
|
|
|