KOP_Library_v5/Contracts/SearchModels/AuthorSearchModel.cs

16 lines
304 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.SearchModels
{
public class AuthorSearchModel
{
public int Id { get; set; }
public string FIO { get; set; } = string.Empty;
}
}