13 lines
292 B
C#
13 lines
292 B
C#
namespace cuqmbr.TravelGuide.Application.Companies.ViewModels;
|
|
|
|
public sealed class UpdateCompanyViewModel
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public string LegalAddress { get; set; }
|
|
|
|
public string ContactEmail { get; set; }
|
|
|
|
public string ContactPhoneNumber { get; set; }
|
|
}
|