13 lines
360 B
C#
13 lines
360 B
C#
namespace Nop.Plugin.Misc.FruitBankPlugin.Models.App
|
|
{
|
|
|
|
public class AppVersionModel
|
|
{
|
|
public string Version { get; set; }
|
|
public string DownloadUrl { get; set; }
|
|
public string FileName { get; set; } // Add this
|
|
public string FileSizeFormatted { get; set; }
|
|
public DateTime ReleaseDate { get; set; }
|
|
}
|
|
}
|