Lotto.cs 478 B

123456789101112131415161718
  1. using Microsoft.AspNetCore.Mvc;
  2. using System.ComponentModel.DataAnnotations;
  3. namespace economy.Models.Lotto
  4. {
  5. /*
  6. * 로또 정보
  7. * 예시 ) https://www.dhlottery.co.kr/common.do?method=getLottoNumber&drwNo={회차}
  8. */
  9. // 검색요청 변수
  10. public class Request
  11. {
  12. [BindProperty(Name = "number", SupportsGet = true)]
  13. [Required(ErrorMessage = "회차를 선택해주세요.")]
  14. public ushort Number { get; set; }
  15. }
  16. }