14 lines
424 B
C#

namespace Marco.Pms.Model.Dtos.Util
{
public class InquiryDto
{
public string? OrganizatioinName { get; set; }
public string? Email { get; set; }
public string? About { get; set; }
public string? OragnizationSize { get; set; }
public int IndustryId { get; set; }
public string? ContactPerson { get; set; }
public string? ContactNumber { get; set; }
}
}