添加项目文件。

This commit is contained in:
luoyunchong
2020-08-09 14:50:47 +08:00
parent 5d21b53ae2
commit 483c410943
51 changed files with 2367 additions and 0 deletions

View File

@ -0,0 +1,38 @@
using System.Collections.Generic;
using Microsoft.AspNetCore.Mvc;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel;
namespace Basic.Controllers
{
[Produces("application/json")]
public class FromQueryParamsController
{
[HttpGet("addresses/validate")]
public IActionResult ValidateAddress([FromQuery]Address address)
{
return new NoContentResult();
}
[HttpGet("zip-codes/validate")]
public IActionResult ValidateZipCodes([FromQuery]IEnumerable<string> zipCodes)
{
return new NoContentResult();
}
}
public class Address
{
/// <summary>
/// 3-letter ISO country code
/// </summary>
[Required]
public string Country { get; set; }
/// <summary>
/// Name of city
/// </summary>
[DefaultValue("Seattle")]
public string City { get; set; }
}
}