GetNbr.cs 306 B

123456789101112131415
  1. using Microsoft.EntityFrameworkCore;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Business.ResourceExamineManagement.Dto
  8. {
  9. [Keyless]
  10. public class GetNbr
  11. {
  12. public string NbrResult { get; set; }
  13. }
  14. }