Files
mixtape/unjo.Core/Entities/Applications/Application.cs
T
2020-03-23 11:57:07 +01:00

23 lines
610 B
C#

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