Files
schengen-visa/Domains/ApplicantDomain/PlaceOfWork.cs
2025-10-05 14:32:06 +03:00

16 lines
447 B
C#

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="ApplicantDomain.Address"/> of hirer
public Address Address { get; set; } = null!;
/// Phone number of hirer
public string PhoneNum { get; set; } = null!;
}