from django.shortcuts import render
from django.views.generic import CreateView
from auction.models import Inquiry
# Create your views here.
class InquiryView(CreateView):
model = Inquiry