8 lines
190 B
C#
8 lines
190 B
C#
using System.Collections.ObjectModel;
|
|
|
|
namespace FileTime.Providers.Local;
|
|
|
|
public interface IRootDriveInfoService
|
|
{
|
|
ObservableCollection<RootDriveInfo> RootDriveInfos { get; set; }
|
|
} |