20 lines
557 B
C#
20 lines
557 B
C#
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; }
|
|
}
|
|
}
|