mirror of
https://github.com/finos/SymphonyElectron.git
synced 2025-01-08 23:23:02 -06:00
26 lines
504 B
C#
26 lines
504 B
C#
using Microsoft.Deployment.WindowsInstaller;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace ConsoleApplication1
|
|
{
|
|
public partial class Step2Panel : Form
|
|
{
|
|
public Step2Panel()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public Step2Panel(Session session)
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|