2025-03-28 09:49:56 +08:00

16 lines
354 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace RunUpdater
{
public class SoftUpdateModel
{
public string ServerPartCode { get; set; }
public string ShopCode { get; set; }
public DateTime? UpdateDate { get; set; }
public string SoftVersion { get; set; }
}
}