qtcnet-client/QtCNETAPI/Events/ServerConnectionClosedEventArgs.cs
2025-12-07 17:20:35 -08:00

14 lines
270 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace QtCNETAPI.Events
{
public class ServerConnectionClosedEventArgs : EventArgs
{
public Exception? Error { get; set; }
}
}