Files
hcs/Hcs.Client/ClientApi/RemoteCaller/IHcsFault.cs
HOME-LAPTOP\kshkulev 33ab055b43 Add project
Basic formatting applied. Unnecessary comments have been removed. Suspicious code is covered by TODO.
2025-08-12 11:21:10 +09:00

9 lines
168 B
C#

namespace Hcs.ClientApi.RemoteCaller
{
public interface IHcsFault
{
string ErrorCode { get; set; }
string ErrorMessage { get; set; }
}
}