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

13 lines
386 B
C#

using LANCommander.Server.Data;
using LANCommander.Server.Data.Models;
using Microsoft.AspNetCore.Mvc;
namespace LANCommander.Server.Services
{
public class SavePathService : BaseDatabaseService<SavePath>
{
public SavePathService(DatabaseContext dbContext, IHttpContextAccessor httpContextAccessor) : base(dbContext, httpContextAccessor)
{
}
}
}