17 lines
309 B
C#
17 lines
309 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LibraryDataModels.AbstractModels
|
|
{
|
|
public interface IBook : IId
|
|
{
|
|
string Name { get; }
|
|
string BookCover { get; }
|
|
string Author { get; }
|
|
string ReleaseDate { get; }
|
|
}
|
|
}
|