Moved interfaces, created new folders for visa requests and handlers

This commit is contained in:
2024-08-15 18:26:14 +03:00
parent b02e30ba2a
commit 604081e047
15 changed files with 37 additions and 26 deletions

View File

@@ -0,0 +1,13 @@
namespace ApplicationLayer.VisaApplications.Models;
public class PlaceOfWorkModel
{
/// Name of hirer
public string Name { get; set; } = null!;
/// <see cref="AddressModel"/> of hirer
public AddressModel Address { get; set; } = null!;
/// Phone number of hirer
public string PhoneNum { get; set; } = null!;
}