mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-05 06:45:37 +01:00
18 lines
343 B
C#
18 lines
343 B
C#
namespace Giants.DataContract
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
public class VersionInfo
|
|
{
|
|
[Required]
|
|
public string AppName { get; set; }
|
|
|
|
[Required]
|
|
public AppVersion Version { get; set; }
|
|
|
|
[Required]
|
|
public Uri InstallerUri { get; set; }
|
|
}
|
|
}
|