Newsbot.Collector/Newsbot.Collector.Domain/Entities/AuthorEntity.cs

9 lines
234 B
C#

namespace Newsbot.Collector.Domain.Entities;
public class AuthorEntity
{
public Guid Id { get; set; }
public Guid SourceId { get; set; }
public string Name { get; set; } = "";
public string Image { get; set; } = "";
}