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

22 lines
410 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NewsBlogAbstractions.Models
{
public class Comment
{
public int Id { get; set; }
public string Title { get; set; } = string.Empty;
public string Content { get; set; } = string.Empty;
public DateTime CreateDate { get; set; }
public int ArticleId { get; set; }
}
}