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