LANCommander/LANCommander.Launcher.Services/CollectionService.cs

19 lines
525 B
C#
Raw Permalink Normal View History

using LANCommander.Launcher.Data;
using LANCommander.Launcher.Data.Models;
2024-09-11 00:24:34 -05:00
using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LANCommander.Launcher.Services
{
public class CollectionService : BaseDatabaseService<Collection>
{
2024-09-11 00:24:34 -05:00
public CollectionService(DatabaseContext dbContext, SDK.Client client, ILogger<CollectionService> logger) : base(dbContext, client, logger)
{
}
}
}