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