namespace zero.Core.Entities { /// /// An application is a website. zero can host multiple websites at once which share common assets /// public class Application : DatabaseEntity { /// /// Image of the application /// public Media Image { get; set; } /// /// Simple image of the application (used of favicon) /// public Media Icon { get; set; } /// /// All assigned domains for this application /// public string[] Domains { get; set; } = new string[] { }; } }