past visas

This commit is contained in:
2024-09-08 00:12:29 +03:00
parent c197a45f83
commit 142148368f
9 changed files with 154 additions and 33 deletions

View File

@@ -11,11 +11,10 @@ public class PastVisaModel
public DateTime IssueDate { get; set; }
/// Name of visa
[Required]
[MaxLength(ConfigurationConstraints.VisaNameLength)]
public string Name { get; set; } = null!;
/// Date when visa expires
[Required]
public DateTime ExpirationDate { get; set; }
}
}