PIbd-22-Ismailov_SUBD/BlogDataModels/BlogContracts/SearchModels/CommentSearchModel.cs
2023-05-18 21:34:36 +04:00

16 lines
329 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BlogContracts.SearchModels
{
public class CommentSearchModel
{
public int? Id { get; set; }
public int? NewsId { get; set; }
public string? Text { get; set; }
}
}