using System;
using System.ComponentModel.DataAnnotations;
using Model.Base;
namespace Dto
{
///
/// 列表
///
public class AppVersionListDto
{
///
/// 版本号
///
public string? versionNum { get; set; }
///
/// 标题
///
public string? title { get; set; }
///
/// 更新信息
///
public string? info { get; set; }
}
}