diff --git a/SchengenVisaApi/Domains/VisaApplicationDomain/ReentryPermit.cs b/SchengenVisaApi/Domains/VisaApplicationDomain/ReentryPermit.cs index d01d4b0..c842708 100644 --- a/SchengenVisaApi/Domains/VisaApplicationDomain/ReentryPermit.cs +++ b/SchengenVisaApi/Domains/VisaApplicationDomain/ReentryPermit.cs @@ -1,10 +1,11 @@ namespace Domains.VisaApplicationDomain { /// Permission to enter a country the issuer wants to come from - public class ReentryPermit : IEntity + /// Owned + public class ReentryPermit { - /// Unique identifier of - public Guid Id { get; private set; } = Guid.NewGuid(); + /// Number of + public string Number { get; set; } = null!; /// Date when expires public DateOnly ExpirationDate { get; set; }