//
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
//
namespace ImageSharp.Tests
{
using System.Collections.Generic;
///
/// An interface for any class within the Tiff generator that produces data to be included in the file.
///
internal interface ITiffGenDataSource
{
IEnumerable GetData(bool isLittleEndian);
}
}