LANCommander/LANCommander.Server/Services/PlatformService.cs
2024-08-04 18:44:33 -05:00

12 lines
354 B
C#

using LANCommander.Server.Data;
using LANCommander.Server.Data.Models;
namespace LANCommander.Server.Services
{
public class PlatformService : BaseDatabaseService<Platform>
{
public PlatformService(DatabaseContext dbContext, IHttpContextAccessor httpContextAccessor) : base(dbContext, httpContextAccessor)
{
}
}
}