2024-04-27 16:16:58 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2024-04-30 22:52:55 +04:00
|
|
|
|
using System.Globalization;
|
2024-04-27 16:16:58 +04:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ServiceStationContracts.SearchModels
|
|
|
|
|
{
|
|
|
|
|
public class GuarantorSearchModel
|
|
|
|
|
{
|
|
|
|
|
public int? Id { get; set; }
|
|
|
|
|
public string? GuarantorFIO { get; set; }
|
|
|
|
|
public string? GuarantorEmail { get; set; }
|
2024-04-30 22:52:55 +04:00
|
|
|
|
public string? GuarantorNumber { get; set; }
|
2024-05-27 23:35:42 +04:00
|
|
|
|
public string? GuarantorPassword { get; set; }
|
|
|
|
|
}
|
2024-04-27 16:16:58 +04:00
|
|
|
|
}
|