crm.core/code/Crm.Core.MsgTool.Domain/Dto/MsgToolVersionModel.cs

15 lines
452 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Crm.Core.MsgTool.Domain.Dto
{
public class MsgToolVersionModel
{
public string? versionCode { get; set; } //文字版本比如v.1.0.02
public string? appUrl { get; set; } //app下载地址
public int? versionNum { get; set; } //数字版本号般以日期来设置比如20220125
}
}