17 lines
434 B
C#
17 lines
434 B
C#
using LANCommander.Launcher.Data;
|
|
using LANCommander.Launcher.Data.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LANCommander.Launcher.Services
|
|
{
|
|
public class MultiplayerModeService : BaseDatabaseService<MultiplayerMode>
|
|
{
|
|
public MultiplayerModeService(DatabaseContext dbContext) : base(dbContext)
|
|
{
|
|
}
|
|
}
|
|
}
|