Winify – Blame information for rev 84

Subversion Repositories:
Rev:
Rev Author Line No. Line
84 office 1 using Servers;
2 using System;
3 using System.Collections.Generic;
4 using System.Linq;
5 using System.Text;
6 using System.Threading.Tasks;
7  
8 namespace Winify.Gotify
9 {
10 public class GotifyConnectionApplication
11 {
12 public GotifyApplication Application { get; }
13 public Server Server { get; }
14  
15 public GotifyConnectionApplication(Server server, GotifyApplication application)
16 {
17 Server = server;
18 Application = application;
19 }
20 }
21 }