18 lines
386 B
C#
Raw Permalink Normal View History

2023-05-13 14:30:05 +04:00
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; }
}
}