15 lines
462 B
C#
15 lines
462 B
C#
namespace TaxBaik.Domain.Entities;
|
|
|
|
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; }
|
|
}
|