using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace VOL.Model.Ai.Response { /// /// app版本信息 /// public class Ai_AppVersionDto { public int Id { get; set; } /// ///AppType /// public int AppType { get; set; } /// ///备注 /// public string Remarks { get; set; } /// /// 版本号 /// public string Version { get; set; } /// /// 下载地址 /// public string Url { get; set; } /// ///创建时间 /// public DateTime CreateDate { get; set; } } }