1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-06-26 16:11:44 +02:00
GiantsTools/Giants.DataContract/Contracts/V1/VersionInfo.cs
2020-08-11 01:29:45 -07:00

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; }
}
}