KOP_Library_v5/Contracts/ViewModels/AuthorViewModel.cs

17 lines
340 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.ViewModels
{
public class AuthorViewModel
{
public int? Id { get; set; }
[DisplayName("Имя Автора")]
public string FIO { get; set; } = string.Empty;
}
}