9 lines
186 B
C#
9 lines
186 B
C#
namespace OI.Metrology.Shared.Models.Stateless;
|
|
|
|
public interface ISpreadingResistanceProfileService
|
|
{
|
|
|
|
byte[] GetImageBytes(string json);
|
|
byte[] GetImageBytes(Stream stream);
|
|
|
|
} |