KOP_Library_v5/Contracts/SearchModels/AuthorSearchModel.cs

16 lines
304 B
C#
Raw Normal View History

2023-12-12 16:23:04 +04:00
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;
}
}