8 lines
181 B
C#
8 lines
181 B
C#
|
using Newsbot.Collector.Domain.Dto;
|
||
|
|
||
|
namespace Newsbot.Collector.Domain.Results;
|
||
|
|
||
|
public class ArticleDetailsResult : BaseResult
|
||
|
{
|
||
|
public ArticleDetailsDto? Item { get; set; }
|
||
|
}
|