24 lines
317 B
C#
24 lines
317 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DatenDB
|
|
{
|
|
public class Help
|
|
{
|
|
|
|
public Help()
|
|
{
|
|
|
|
}
|
|
|
|
public static void GetHelp(object sender)
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|