Files
schengen-visa/SchengenVisaApi/ApplicationLayer/Services/Applicants/Models/AddressModel.cs
2024-08-19 22:25:08 +03:00

14 lines
319 B
C#

namespace ApplicationLayer.Services.Applicants.Models;
public class AddressModel
{
/// City part of address
public Guid CityId { get; set; }
/// Street part of address
public string Street { get; set; } = null!;
/// Building part of address
public string Building { get; set; } = null!;
}