22 lines
410 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 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; }
}
}