mirror of
https://github.com/lin-ycv/EverythingPowerToys.git
synced 2025-04-04 22:23:55 +08:00
10 lines
194 B
C#
10 lines
194 B
C#
using System;
|
|
|
|
namespace Community.PowerToys.Run.Plugin.Everything.Update
|
|
{
|
|
public class UpdateSettings
|
|
{
|
|
public Version Skip { get; set; } = new Version(0, 0, 0, 0);
|
|
}
|
|
}
|