2020-08-17 22:21:11 -04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace SharedLibraryCore.Interfaces
|
|
|
|
|
{
|
|
|
|
|
public interface IClientMetaResponse
|
|
|
|
|
{
|
|
|
|
|
int ClientId { get;}
|
2021-08-31 19:21:40 -04:00
|
|
|
|
long MetaId { get; }
|
2020-08-17 22:21:11 -04:00
|
|
|
|
}
|
|
|
|
|
}
|