Changed models, added Application layer models
This commit is contained in:
		| @@ -1,13 +1,12 @@ | ||||
| namespace Domains.VisaApplicationDomain | ||||
| { | ||||
|     /// Permission to enter a country the issuer wants to come from | ||||
|     /// <remarks>Owned</remarks> | ||||
|     public class ReentryPermit | ||||
|     { | ||||
|         /// Number of <see cref="ReentryPermit"/> | ||||
|         public string Number { get; set; } = null!; | ||||
| namespace Domains.VisaApplicationDomain; | ||||
|  | ||||
|         /// Date when <see cref="ReentryPermit"/> expires | ||||
|         public DateTime ExpirationDate { get; set; } | ||||
|     } | ||||
| } | ||||
| /// Permission to enter a country the issuer wants to come from | ||||
| /// <remarks>Owned</remarks> | ||||
| public class ReentryPermit | ||||
| { | ||||
|     /// Number of <see cref="ReentryPermit"/> | ||||
|     public string Number { get; set; } = null!; | ||||
|  | ||||
|     /// Date when <see cref="ReentryPermit"/> expires | ||||
|     public DateTime ExpirationDate { get; set; } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user