mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
23 lines
424 B
C#
23 lines
424 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 Observatory.UI
|
|
{
|
|
public partial class NotificationForm : Form
|
|
{
|
|
public NotificationForm()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public Guid Guid;
|
|
}
|
|
}
|