mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-10-31 21:05:38 +01:00
21 lines
412 B
C#
21 lines
412 B
C#
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; }
|
|
|
|
[Required]
|
|
public string BranchName { get; set;}
|
|
}
|
|
}
|