14 lines
438 B
C#
14 lines
438 B
C#
namespace Marco.Pms.Model.Utilities
|
|
{
|
|
public class InquiryEmailObject
|
|
{
|
|
public string? OrganizatioinName { get; set; }
|
|
public string? Email { get; set; }
|
|
public string? About { get; set; }
|
|
public string? OragnizationSize { get; set; }
|
|
public string? IndustryName { get; set; }
|
|
public string? ContactPerson { get; set; }
|
|
public string? ContactNumber { get; set; }
|
|
}
|
|
}
|