Files
mixtape/zero.Core/Entities/Applications/Application.cs
T

23 lines
610 B
C#
Raw Normal View History

2020-03-24 23:09:29 +01:00
namespace zero.Core.Entities
2020-03-23 11:57:07 +01:00
{
/// <summary>
2020-03-24 23:09:29 +01:00
/// An application is a website. zero can host multiple websites at once which share common assets
2020-03-23 11:57:07 +01:00
/// </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[] { };
}
}