22 lines
516 B
C#
22 lines
516 B
C#
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;
|
|
}
|
|
}
|