Files
schengen-visa/SchengenVisaApi/Domains/ApplicantDomain/PlaceOfWork.cs
2024-08-12 17:38:02 +03:00

20 lines
516 B
C#

using Domains.Common;
namespace Domains.ApplicantDomain
{
public class PlaceOfWork : IEntity
{
/// Unique identifier of <see cref="PlaceOfWork"/>
public Guid Id { get; private set; } = Guid.NewGuid();
/// Name of hirer
public string Name { get; set; } = null!;
/// <see cref="Domains.Common.Address"/> of hirer
public Address Address { get; set; } = null!;
/// Phone number of hirer
public string PhoneNum { get; set; } = null!;
}
}