9 lines
204 B
C#
9 lines
204 B
C#
using System;
|
|
using xFileService.Models.Entities;
|
|
using xPushService.Interfaces;
|
|
|
|
namespace xFileService.Interfaces.Entities
|
|
{
|
|
public interface IXFileEntityHub : IXBaseEntityHub<XFile, Guid>
|
|
{ }
|
|
} |