oliverbooth.dev/OliverBooth/Data/Web/IBook.cs

40 lines
988 B
C#
Raw Normal View History

2023-12-14 22:09:17 +00:00
using SixLabors.ImageSharp;
2023-12-14 16:03:24 +00:00
namespace OliverBooth.Data.Web;
/// <summary>
/// Represents a book.
/// </summary>
public interface IBook
{
/// <summary>
/// Gets the author of the book.
/// </summary>
/// <value>The author of the book.</value>
string Author { get; }
/// <summary>
/// Gets the ISBN of the book.
/// </summary>
/// <value>The ISBN of the book.</value>
string Isbn { get; }
/// <summary>
/// Gets the state of the book.
/// </summary>
/// <value>The state of the book.</value>
BookState State { get; }
/// <summary>
/// Gets the title of the book.
/// </summary>
/// <value>The title of the book.</value>
string Title { get; }
2023-12-14 22:09:17 +00:00
/// <summary>
/// Generates the barcode for this book.
/// </summary>
/// <returns>The EAN-13 barcode encoded as PNG in Base64.</returns>
/// <remarks>This value should be disposed.</remarks>
string GetBarcode();
2023-12-14 16:03:24 +00:00
}