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,16 @@
namespace ApplicationLayer.VisaApplications.Models;
public class AddressModel
{
/// Country part of address
public string Country { get; set; } = null!;
/// City part of address
public string City { get; set; } = null!;
/// Street part of address
public string Street { get; set; } = null!;
/// Building part of address
public string Building { get; set; } = null!;
}