Buecherwurm/Program.cs

13 lines
192 B
C#
Raw Normal View History

2020-04-23 10:51:51 +00:00
using System;
namespace Bücherwurm
{
class Program
{
static void Main(string[] args)
{
2020-04-23 13:44:38 +00:00
var Admin = new Administration();
2020-04-23 10:51:51 +00:00
}
}
}