22 lines
453 B
C#
22 lines
453 B
C#
using MediatR;
|
|
|
|
namespace cuqmbr.TravelGuide.Application.Companies.Commands.AddCompany;
|
|
|
|
public record AddCompanyCommand : IRequest<CompanyDto>
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public string LegalAddress { get; set; }
|
|
|
|
public string ContactEmail { get; set; }
|
|
|
|
public string ContactPhoneNumber { get; set; }
|
|
|
|
|
|
public string Username { get; set; }
|
|
|
|
public string Email { get; set; }
|
|
|
|
public string Password { get; set; }
|
|
}
|