15 lines
341 B
C#
15 lines
341 B
C#
namespace SharedModels.QueryParameters.Objects;
|
|
|
|
public class StateParameters : ParametersBase
|
|
{
|
|
public const string DefaultFields = "id,name,countryId";
|
|
|
|
public StateParameters()
|
|
{
|
|
Sort = "id";
|
|
Fields = DefaultFields;
|
|
}
|
|
|
|
public string? Name { get; set; }
|
|
public int? CountryId { get; set; }
|
|
} |