implement client server connection tracking persistence

This commit is contained in:
RaidMax
2021-08-31 18:21:40 -05:00
parent eff8a29a39
commit c5f9a68102
37 changed files with 4961 additions and 22 deletions

View File

@ -1,13 +1,11 @@
using SharedLibraryCore.Interfaces;
using System;
using System.Collections.Generic;
using System.Text;
namespace SharedLibraryCore.Dtos.Meta.Responses
{
public class BaseMetaResponse : IClientMeta, IClientMetaResponse
{
public int MetaId { get; set; }
public long MetaId { get; set; }
public int ClientId { get; set; }
public MetaType Type { get; set; }
public DateTime When { get; set; }

View File

@ -0,0 +1,10 @@
using Data.Models;
namespace SharedLibraryCore.Dtos.Meta.Responses
{
public class ConnectionHistoryResponse : BaseMetaResponse
{
public string ServerName { get; set; }
public Reference.ConnectionType ConnectionType { get; set; }
}
}