ISEbd-21_Koscheev.M.S.Softw.../SoftwareInstallation/SoftwareInstallationContracts/SearchModels/PackageSearchModel.cs

8 lines
193 B
C#
Raw Normal View History

2023-02-06 16:15:16 +04:00
namespace SoftwareInstallationContracts.SearchModels
{
public class PackageSearchModel
{
public int? Id { get; set; }
public string? PackageName { get; set; }
}
}