8 lines
205 B
C#
8 lines
205 B
C#
|
using Newsbot.Collector.Domain.Dto;
|
||
|
|
||
|
namespace Newsbot.Collector.Domain.Results;
|
||
|
|
||
|
public class DiscordNotificationResult : BaseResult
|
||
|
{
|
||
|
public IEnumerable<DiscordNotificationDto>? Items { get; set; }
|
||
|
}
|