選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

UserQuery.cs 220B

1234567891011121314
  1. using System.ComponentModel.DataAnnotations;
  2. namespace BlackRock.Reporting.API.Mediator.Model
  3. {
  4. public class UserQuery
  5. {
  6. [Required]
  7. public int Id { get; }
  8. public UserQuery(int id)
  9. {
  10. Id = id;
  11. }
  12. }
  13. }