740f8ec2ef
Мать жива?
18 lines
457 B
C#
18 lines
457 B
C#
using CaseAccountingContracts.ViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CaseAccountingContracts.BindingModels
|
|
{
|
|
public class ReportBindingModel
|
|
{
|
|
public string UserEmail { get; set; } = string.Empty;
|
|
public DateTime DateFrom { get; set; }
|
|
public DateTime DateTo { get; set; }
|
|
public int? UserId { get; set; }
|
|
}
|
|
}
|