This fixes possible lack of data on client applications. Prevents multiple requests from being sent
14 lines
346 B
C#
14 lines
346 B
C#
namespace SharedModels.QueryParameters.Objects;
|
|
|
|
public class AddressParameters : ParametersBase
|
|
{
|
|
public const string DefaultFields = "id,name,fullName,latitude,longitude,cityId";
|
|
|
|
public AddressParameters()
|
|
{
|
|
Fields = DefaultFields;
|
|
}
|
|
|
|
public string? Name { get; set; }
|
|
public int? CityId { get; set; }
|
|
} |