namespace BookShopDataModels.Models { public interface IBookModel: IId { string BookName { get; } double Cost { get; } int Count { get; } int GenreId { get; } Dictionary BookAuthors { get; } } }