12 lines
384 B
C#
12 lines
384 B
C#
namespace TaxBaik.Application.DTOs;
|
|
|
|
public class SubmitInquiryDto
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Phone { get; set; } = string.Empty;
|
|
public string? Email { get; set; }
|
|
public string ServiceType { get; set; } = string.Empty;
|
|
public string Message { get; set; } = string.Empty;
|
|
public bool SuppressNotification { get; set; }
|
|
}
|