using System;
|
using System.Collections.Generic;
|
|
namespace Shared.Common.ResponseEntity
|
{
|
[Serializable]
|
public class GetAppVersionCode
|
{
|
public List<GetAppVersionCodeOBJ> Results = new List<GetAppVersionCodeOBJ> { };
|
public int ResultCount;
|
}
|
[Serializable]
|
public class GetAppVersionCodeOBJ
|
{
|
public string ReleaseNotes { get; set; }
|
public string Version { get; set; }
|
}
|
}
|