mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 02:36:19 +02: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; }
|
|||
|
|
}
|
|||
|
|
}
|