10 lines
258 B
C#
10 lines
258 B
C#
using System;
|
|
using xDataService.Interfaces;
|
|
using xFileService.Models.Dtos;
|
|
using xFileService.Models.Entities;
|
|
|
|
namespace xFileService.Interfaces.Dtos
|
|
{
|
|
public interface IXFileRepositoryService : IXBaseRepositoryService<XFile, XFileDto, Guid>
|
|
{ }
|
|
} |