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

using Microsoft.AspNetCore.Http;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CustomerOnlineV2.Common.Models.DocumentModel
{
public class CustomerDocumentModel: CommonResponse
{
public string? cdid { get; set; }
public string? customerId { get; set; }
public string? fileName { get; set;}
public string? description { get; set; }
public string? fileType { get; set; }
public string? IdType { get; set; }
public string? documentType { get; set; }
public string? user { get; set;}
public string? sessionId { get; set; }
public IFormFile? File { get; set; }
public object? FormFile { get; set; }
}
}