PIbd-21_Danilov_V.V._SUBD/NewsBlog/NewsBlogAbstractions/Models/Author.cs

20 lines
383 B
C#
Raw Normal View History

2024-05-19 21:59:55 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NewsBlogAbstractions.Models
{
public class Author
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
public string Description { get; set; } = string.Empty;
public string Phone { get; set; } = string.Empty;
}
}