13 lines
431 B
C#
13 lines
431 B
C#
namespace TaxBaik.Application.DTOs;
|
|
|
|
public class UpdateInquiryDto
|
|
{
|
|
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 string Status { get; set; } = string.Empty;
|
|
public string? AdminMemo { get; set; }
|
|
}
|