9 lines
179 B
C#
9 lines
179 B
C#
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace Engine.Serialization.DTOs;
|
||
|
|
||
|
internal record struct BehaviourControllerDTO(
|
||
|
string ClassType,
|
||
|
List<BehaviourDTO> Behaviours
|
||
|
);
|