Case_accounting/CaseAccounting/CaseAccountingContracts/SearchModels/ContractSearchModel.cs

18 lines
344 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 ContractSearchModel
{
public int? Id { get; set; }
public DateTime? Date { get; set; }
public int? UserId { get; set; }
}
}