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