CourseWork_ServiceStation/ServiceStation/ServiceStationContracts/SearchModels/GuarantorSearchModel.cs

16 lines
360 B
C#

using System;
using System.Collections.Generic;
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; }
}
}