using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BookShopDataModels.Models { public interface IBookModel: IId { string Name { get; } double Cost { get; } int Count { get; } int GenreId { get; } } }