Syntriax.Engine/Engine.Serialization/DTOs/StateEnableDto.cs

8 lines
139 B
C#
Raw Permalink Normal View History

2024-02-12 10:48:56 +03:00
namespace Engine.Serialization;
2024-02-09 17:50:39 +03:00
2024-02-12 10:48:56 +03:00
public class StateEnableDto : ClassInterchangeableDto
{
public bool Enabled { get; set; } = false;
}