namespace TaxBaik.Domain.Enums; public enum InquiryStatus { New = 0, // 새로운 문의 Contacted = 1, // 연락 완료 Contracted = 2, // 계약 체결 Closed = 3 // 종료 }