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

18 lines
343 B
C#
Raw Normal View History

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