feature: online services push notifications

This commit is contained in:
Gary Sharp
2025-01-01 19:23:18 +11:00
parent 4006bdbcc6
commit 296f7a13fd
19 changed files with 667 additions and 271 deletions
@@ -0,0 +1,9 @@
namespace Disco.Models.Services.Interop.DiscoServices
{
public interface IConnectNotification
{
int Version { get; }
int Type { get; }
string Content { get; }
}
}