Basic formatting applied. Unnecessary comments have been removed. Suspicious code is covered by TODO.
9 lines
168 B
C#
9 lines
168 B
C#
namespace Hcs.ClientApi.RemoteCaller
|
|
{
|
|
public interface IHcsFault
|
|
{
|
|
string ErrorCode { get; set; }
|
|
string ErrorMessage { get; set; }
|
|
}
|
|
}
|