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