Владимир Данилов cb6251ab2b Лаба4
2024-05-19 21:59:55 +04:00

24 lines
453 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NewsBlogAbstractions.Models
{
public class Article
{
public int Id { get; set; }
public string Title { get; set; } = string.Empty;
public string Content { get; set; } = string.Empty;
public DateTime PublicationDate { get; set; }
public int AuthorId { get; set; }
public int CategoryId { get; set; }
}
}