Files
Torch/Torch/Plugins/PluginDependency.cs
2019-06-17 21:17:00 -07:00

17 lines
471 B
C#

using System;
namespace Torch
{
public class PluginDependency
{
/// <summary>
/// A unique identifier for the plugin that identifies the dependency.
/// </summary>
public Guid Plugin { get; set; }
/// <summary>
/// The plugin minimum version. This must include a string in the format of #[.#[.#]] for update checking purposes.
/// </summary>
public string MinVersion { get; set; }
}
}