Files
Aaru/Aaru.Gui/Models/PluginModel.cs

12 lines
261 B
C#
Raw Normal View History

using System;
namespace Aaru.Gui.Models
{
public class PluginModel
{
public string Name { get; set; }
public Guid Uuid { get; set; }
public string Version { get; set; }
public string Author { get; set; }
}
}