1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-07-01 02:01:45 +02:00
GiantsTools/Giants.DataContract/Contracts/V1/VersionInfo.cs

18 lines
346 B
C#
Raw Normal View History

2020-08-16 11:03:10 +02:00
namespace Giants.DataContract.V1
{
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; }
}
}