16 lines
400 B
C#
16 lines
400 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Mysql_example
|
|
{
|
|
public static class Config
|
|
{
|
|
public static string DBHost = "localhost";
|
|
public static string DBName = "dominik_test";
|
|
public static string DBUser = "root";
|
|
public static string DBPass = "";
|
|
}
|
|
}
|