Files
Backend-Api/CompanyManagment.App.Contracts/ContactUs/IContactUsApplication.cs
2025-04-23 23:22:26 +03:30

18 lines
461 B
C#

using _0_Framework.Application;
namespace CompanyManagment.App.Contracts.ContactUs;
public interface IContactUsApplication
{
OperationResult Create(CreateContactUs command);
}
public class CreateContactUs
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string Email { get; set; }
public string PhoneNumber { get; set; }
public string Title { get; set; }
public string Message { get; set; }
}