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.

24 lines
782 B

12 months ago
10 months ago
12 months ago
  1. using Microsoft.AspNetCore.Http;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace CustomerOnlineV2.Common.Models.DocumentModel
  8. {
  9. public class CustomerDocumentModel: CommonResponse
  10. {
  11. public string? cdid { get; set; }
  12. public string? customerId { get; set; }
  13. public string? fileName { get; set;}
  14. public string? description { get; set; }
  15. public string? fileType { get; set; }
  16. public string? IdType { get; set; }
  17. public string? documentType { get; set; }
  18. public string? user { get; set;}
  19. public string? sessionId { get; set; }
  20. public IFormFile? File { get; set; }
  21. public object? FormFile { get; set; }
  22. }
  23. }