mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-01-14 11:50:27 +08:00
11 lines
235 B
C#
11 lines
235 B
C#
|
using System.Diagnostics;
|
|||
|
|
|||
|
namespace Wox.Infrastructure.FileSystemHelper
|
|||
|
{
|
|||
|
public interface IFileVersionInfoWrapper
|
|||
|
{
|
|||
|
FileVersionInfo GetVersionInfo(string path);
|
|||
|
string FileDescription { get; set; }
|
|||
|
}
|
|||
|
}
|