PIbd-22_Rogashova_E.A._SUBD/BookShopContracts/BindingModels/AuthorBindingModel.cs

18 lines
478 B
C#
Raw Normal View History

using BookShopDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BookShopContracts.BindingModels
{
public class AuthorBindingModel : IAuthorModel
{
public int Id { get; set; }
public string Surname { get; set; } = string.Empty;
public string Name { get; set; } = string.Empty;
public string Patronymic { get; set; } = string.Empty;
}
}