DateTime instead of DateOnly, fixed warnings

This commit is contained in:
2024-08-15 14:35:55 +03:00
parent 25a9d8f86d
commit 47509906a5
10 changed files with 14 additions and 16 deletions

View File

@@ -9,9 +9,9 @@ namespace Domains.VisaApplicationDomain
public Guid Id { get; private set; } = Guid.NewGuid();
/// First day of <see cref="PastVisit"/>
public DateOnly StartDate { get; set; }
public DateTime StartDate { get; set; }
/// Last day of <see cref="PastVisit"/>
public DateOnly EndDate { get; set; }
public DateTime EndDate { get; set; }
}
}