13 lines
224 B
C#
13 lines
224 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace SharedLibraryCore.Interfaces
|
|||
|
{
|
|||
|
public interface IClientMetaResponse
|
|||
|
{
|
|||
|
int ClientId { get;}
|
|||
|
int MetaId { get; }
|
|||
|
}
|
|||
|
}
|