Case_accounting/CaseAccounting/CaseAccountingContracts/SearchModels/DealSearchModel.cs

18 lines
340 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CaseAccountingContracts.SearchModels
{
public class DealSearchModel
{
public int? Id { get; set; }
public DateTime? Date { get; set; }
public int? UserId { get; set; }
}
}