mirror of
https://github.com/soukoku/ntwain.git
synced 2025-04-29 12:52:01 +08:00
18 lines
341 B
C#
18 lines
341 B
C#
![]() |
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; }
|
|||
|
}
|
|||
|
}
|