mirror of
https://github.com/Stefan-5422/Superbuchaltung.git
synced 2026-09-04 00:46:04 +02:00
26 lines
476 B
C#
26 lines
476 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 Superbuchhaltung.Forms.Prompts
|
|
{
|
|
public partial class Modify : Form
|
|
{
|
|
public Modify()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void Modify_Load(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|