16 lines
399 B
C#
16 lines
399 B
C#
using System;
|
|
using Microsoft.Extensions.Logging;
|
|
using xFileService.Interfaces.Entities;
|
|
using xFileService.Models.Entities;
|
|
using xPushService.Base;
|
|
|
|
namespace xFileService.Providers.Entities
|
|
{
|
|
public class XFileEntityHub : XBaseEntityHub<XFile, Guid>, IXFileEntityHub
|
|
{
|
|
public XFileEntityHub(
|
|
ILogger<XFileEntityHub> logger
|
|
) : base(logger)
|
|
{ }
|
|
}
|
|
} |