Files
ravenqbi/AyaNovaQBI/auth.cs
2022-06-19 23:34:48 +00:00

26 lines
522 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace AyaNovaQBI
{
public partial class auth : Form
{
public auth()
{
InitializeComponent();
}
private void auth_Load(object sender, EventArgs e)
{
edServerUrl.Text = util.SERVER_URL;
}
}
}