You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }