IW4M-Admin/SharedLibraryCore/Interfaces/IClientMetaResponse.cs

13 lines
224 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace SharedLibraryCore.Interfaces
{
public interface IClientMetaResponse
{
int ClientId { get;}
int MetaId { get; }
}
}