Case_accounting/CaseAccounting/CaseAccountingContracts/SearchModels/DealSearchModel.cs

16 lines
298 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; }
}
}