using System; using System.Collections.Generic; namespace administration.Models; public partial class Logo { public int Id { get; set; } public string Name { get; set; } = null!; public byte[]? Image { get; set; } public virtual ICollection AdditionalSources { get; set; } = new List(); }