Winify

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 83  →  ?path2? @ 84
/trunk/Winify/Gotify/GotifyConnection.cs
@@ -555,29 +555,5 @@
}
 
#endregion
 
private class GotifyConnectionApplication
{
public GotifyApplication Application { get; }
public Server Server { get; }
 
public GotifyConnectionApplication(Server server, GotifyApplication application)
{
Server = server;
Application = application;
}
}
 
private class GotifyConnectionData
{
public byte[] Payload { get; }
public Server Server { get; }
 
public GotifyConnectionData(byte[] payload, Server server)
{
Payload = payload;
Server = server;
}
}
}
}
/trunk/Winify/Gotify/GotifyConnectionApplication.cs
@@ -0,0 +1,21 @@
using Servers;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Winify.Gotify
{
public class GotifyConnectionApplication
{
public GotifyApplication Application { get; }
public Server Server { get; }
 
public GotifyConnectionApplication(Server server, GotifyApplication application)
{
Server = server;
Application = application;
}
}
}
/trunk/Winify/Gotify/GotifyConnectionData.cs
@@ -0,0 +1,21 @@
using Servers;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Winify.Gotify
{
public class GotifyConnectionData
{
public byte[] Payload { get; }
public Server Server { get; }
 
public GotifyConnectionData(byte[] payload, Server server)
{
Payload = payload;
Server = server;
}
}
}