Files
api-generator/Core/Dto/Settings/EnvironnementConfigDto.cs
2025-10-11 13:08:09 +02:00

12 lines
297 B
C#

namespace Core.Dto.Settings;
/// <summary>
/// This class gathers environment-related configuration
/// </summary>
public class EnvironmentConfigDto
{
public string Invite { get; set; } = "";
public string LocalRoot { get; set; } = "";
public string DockerRoot { get; set; } = "";
}