1
0
mirror of https://github.com/soukoku/ntwain.git synced 2025-04-29 12:52:01 +08:00
ntwain/NTwain/IDataSource.cs

18 lines
341 B
C#
Raw Normal View History

using System;
namespace NTwain
{
/// <summary>
/// Represents a TWAIN data source.
/// </summary>
public interface IDataSource
{
/// <summary>
/// Gets the source's product name.
/// </summary>
/// <value>
/// The name.
/// </value>
string Name { get; }
}
}