1
This commit is contained in:
21
Core/Models/PackageModel.cs
Normal file
21
Core/Models/PackageModel.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BITKit
|
||||
{
|
||||
public record Package
|
||||
{
|
||||
public string Name=nameof(Package);
|
||||
public string DirectoryPath;
|
||||
public string Version;
|
||||
public string AppName;
|
||||
public string ProcessName;
|
||||
public string ProductName;
|
||||
public DateTime LastUpdateTime;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user