Syntriax.Engine/Engine.Serialization/DTOs/BehaviourControllerDTO.cs

9 lines
179 B
C#
Raw Normal View History

2024-02-10 17:10:02 +03:00
using System.Collections.Generic;
namespace Engine.Serialization.DTOs;
internal record struct BehaviourControllerDTO(
string ClassType,
List<BehaviourDTO> Behaviours
);