using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GpsCardGatewayPosition.Model.Cache { public class AddressFilterModel { public string Address { get; set; } = default!; public string City { get; set; } = default!; } }