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; } }