18 lines
386 B
C#
18 lines
386 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BookShopDataModels.Models
|
|
{
|
|
public interface IBookModel: IId
|
|
{
|
|
string BookName { get; }
|
|
double Cost { get; }
|
|
int Count { get; }
|
|
int GenreId { get; }
|
|
Dictionary<int, IAuthorModel> BookAuthors { get; }
|
|
}
|
|
}
|