Coursach/Course/Contracts/SearchModels/ImplementerSearchModel.cs

15 lines
268 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.SearchModels
{
public class ImplementerSearchModel
{
public int? Id { get; set; }
public string? Login { get; set; }
}
}