namespace TaxBaik.Domain.Entities; using TaxBaik.Domain.Enums; public class Inquiry { public int Id { get; set; } public string Name { get; set; } = null!; public string Phone { get; set; } = null!; public string? Email { get; set; } public string ServiceType { get; set; } = null!; public string Message { get; set; } = null!; public string Status { get; set; } = "new"; public string? IpAddress { get; set; } public DateTime CreatedAt { get; set; } }