Initial commit

This commit is contained in:
Lucas Bortoli
2022-06-25 18:30:01 -03:00
commit 347f466242
22 changed files with 2050 additions and 0 deletions

25
ntfysh_client/AboutBox.cs Normal file
View File

@@ -0,0 +1,25 @@
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 ntfysh_client
{
public partial class AboutBox : Form
{
public AboutBox()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
DialogResult = DialogResult.OK;
}
}
}