BITKit/Src/Core/Models/PackageModel.cs

19 lines
378 B
C#
Raw Normal View History

2023-06-05 19:57:17 +08:00
using System;
namespace BITKit
{
public record Package
{
public string Name=nameof(Package);
2024-03-31 23:31:00 +08:00
2023-06-05 19:57:17 +08:00
public string DirectoryPath;
2023-08-23 01:59:26 +08:00
public string GitUrl;
2023-06-05 19:57:17 +08:00
public string Version;
public string AppName;
public string ProcessName;
public string ProductName;
public DateTime LastUpdateTime;
2024-03-31 23:31:00 +08:00
2023-06-05 19:57:17 +08:00
}
}