This commit is contained in:
2023-06-23 09:03:00 +03:00
parent d549877567
commit 4bac59f322
27 changed files with 376 additions and 126 deletions
@@ -0,0 +1,12 @@
namespace MyOffice.Web.Models.Account
{
using System.ComponentModel.DataAnnotations;
public class MotionsGetModel
{
[Required]
public DateTime From { get; set; }
[Required]
public DateTime To { get; set; }
}
}