DicomServer/Universal/SimpleViewer.Universal/Services/IDicomFileReaderService.cs

15 lines
338 B
C#
Raw Normal View History

2024-12-13 10:06:20 +08:00
// Copyright (c) 2012-2018 fo-dicom contributors.
// Licensed under the Microsoft Public License (MS-PL).
using Dicom;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace SimpleViewer.Universal.Services
{
public interface IDicomFileReaderService
{
Task<IList<DicomFile>> GetFilesAsync();
}
}