Files
T-DAS/Epost.Model/ChangeBoxModel.cs

20 lines
557 B
C#
Raw Permalink Normal View History

2023-01-13 15:30:20 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Epost.Model
{
public class ChangeBoxModel
{
private string shopid = string.Empty;
private string address = string.Empty;
private string controlip = string.Empty;
public string Shopid { get => shopid; set => shopid = value; }
public string Address { get => address; set => address = value; }
public string Controlip { get => controlip; set => controlip = value; }
}
}