17 lines
418 B
C#
17 lines
418 B
C#
using System;
|
|
using Microsoft.Extensions.Logging;
|
|
using xFileService.Interfaces.Dtos;
|
|
using xFileService.Models.Dtos;
|
|
using xFileService.Models.Entities;
|
|
using xPushService.Base;
|
|
|
|
namespace xFileService.Providers.Dtos
|
|
{
|
|
public class XFileDtoHub : XBaseDtoHub<XFile, XFileDto, Guid>, IXFileDtoHub
|
|
{
|
|
public XFileDtoHub(
|
|
ILogger<XFileDtoHub> logger
|
|
) : base(logger)
|
|
{ }
|
|
}
|
|
} |