Flow.Launcher/Flow.Launcher.Core/ExternalPlugins/UserPlugin.cs

24 lines
798 B
C#
Raw Permalink Normal View History

2024-05-16 11:22:08 +00:00
using System;
namespace Flow.Launcher.Core.ExternalPlugins
2020-12-06 20:40:42 +00:00
{
public record UserPlugin
2020-12-06 20:40:42 +00:00
{
public string ID { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public string Author { get; set; }
public string Version { get; set; }
public string Language { get; set; }
public string Website { get; set; }
public string UrlDownload { get; set; }
public string UrlSourceCode { get; set; }
2024-05-16 11:22:08 +00:00
public string LocalInstallPath { get; set; }
public string IcoPath { get; set; }
public DateTime? LatestReleaseDate { get; set; }
public DateTime? DateAdded { get; set; }
2024-05-16 11:22:08 +00:00
public bool IsFromLocalInstallPath => !string.IsNullOrEmpty(LocalInstallPath);
2020-12-06 20:40:42 +00:00
}
}