mirror of
https://github.com/vinaypamnani/wmie2.git
synced 2025-12-06 04:12:02 +01:00
17 lines
338 B
C#
17 lines
338 B
C#
using System;
|
|
|
|
namespace WmiExplorer.Updater
|
|
{
|
|
internal class Update
|
|
{
|
|
public Uri ChangeLogUrl { get; set; }
|
|
|
|
public DateTimeOffset LastUpdatedTime { get; set; }
|
|
|
|
public ReleaseStatus ReleaseStatus { get; set; }
|
|
|
|
public Uri Url { get; set; }
|
|
|
|
public Version Version { get; set; }
|
|
}
|
|
} |