using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using MongoDB.Driver; using server.Models; namespace server.Persistence { public interface IDbContext { public IMongoCollection Seasons { get; set; } public IMongoCollection Episodes { get; set; } public IMongoCollection Characters { get; set; } public IMongoCollection Quotes { get; set; } } }