Idea of the project: if someone wants to order a project development, here you can send an application.
using ProjectRequestTest.Core.Enums;
using System;
namespace ProjectRequestTest.Core
{
public class ProjectRequestItem
{
public int Id { get; set; }
public long Identifier { get; set; }
public string ClientName { get; set; }
public string Email { get; set; }
public string PhoneNumber { get; set; }
public ProjectType ProjectType { get; set; }
public string Description { get; set; }
public string UserIP { get; set; }
public DateTime DateCreated { get; set; }
}
}