2023-04-02 16:52:24 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BankContracts.SearchModels
|
|
|
|
|
{
|
|
|
|
|
public class CreditProgramSearchModel
|
|
|
|
|
{
|
2023-04-06 18:41:33 +04:00
|
|
|
|
public int? Id { get; set; }
|
2023-04-02 16:52:24 +04:00
|
|
|
|
}
|
|
|
|
|
}
|