2025-07-05 22:26:42 +02:00

17 lines
252 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DomainObjects
{
internal class DebugEntry
{
public static bool IsDefined(DebugName name)
{
return true;
}
}
}