feixian_weifajianguan/OpenAuth.App/ServiceApp/DroneCaseInfo/Request/DronCaseSingleCityUpdateReq.cs

28 lines
600 B
C#
Raw Permalink Normal View History

2026-02-03 16:00:02 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.ServiceApp
{
public class DronCaseSingleCityUpdateReq
{
public DronCaseSingleCityUpdateReq() { }
public string Id { get; set; }
public string countyid { get; set; }
public string countyname { get; set; }
public string streetid { get; set; }
public string streetname { get; set; }
public string communityid { get; set; }
public string communityname { get; set; }
}
}