namespace Domains.Common
{
    /// Model of a country
    public class Country : IEntity
    {
        /// Unique identifier of the 
        public Guid Id { get; private set; } = Guid.NewGuid();
        /// Name of the country
        public string Name { get; set; } = null!;
        /// Located in Schengen area
        public bool IsSchengen { get; set; }
        /// List of  that country have
        public List Cities { get; set; } = null!;
    }
}