mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
2.2 KiB
70 lines
2.2 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using JetBrains.Annotations;
|
|
using Volo.Abp;
|
|
using Volo.Abp.Data;
|
|
using Volo.Abp.Domain.Entities;
|
|
|
|
namespace Volo.Docs.Projects
|
|
{
|
|
public class Project : AggregateRoot<Guid>
|
|
{
|
|
/// <summary>
|
|
/// Name of the project for display purposes.
|
|
/// </summary>
|
|
public virtual string Name { get; protected set; }
|
|
|
|
/// <summary>
|
|
/// A short name of the project to be seen in URLs.
|
|
/// </summary>
|
|
public virtual string ShortName { get; protected set; }
|
|
|
|
/// <summary>
|
|
/// The format of the document (e.g. "md" for Markdown, "html" for HTML).
|
|
/// </summary>
|
|
public virtual string Format { get; protected set; }
|
|
|
|
/// <summary>
|
|
/// The document for the initial page.
|
|
/// </summary>
|
|
public virtual string DefaultDocumentName { get; protected set; }
|
|
|
|
/// <summary>
|
|
/// The document to be used for the navigation menu (index).
|
|
/// </summary>
|
|
public virtual string NavigationDocumentName { get; protected set; }
|
|
|
|
public virtual string MinimumVersion { get; set; }
|
|
|
|
/// <summary>
|
|
/// The source of the documents (e.g. Github).
|
|
/// </summary>
|
|
public virtual string DocumentStoreType { get; protected set; }
|
|
|
|
public virtual string MainWebsiteUrl { get; set; }
|
|
|
|
public virtual string LatestVersionBranchName { get; set; }
|
|
|
|
protected Project()
|
|
{
|
|
ExtraProperties = new Dictionary<string, object>();
|
|
}
|
|
|
|
public Project(
|
|
Guid id,
|
|
[NotNull] string name,
|
|
[NotNull] string shortName,
|
|
[NotNull] string defaultDocumentName,
|
|
[NotNull] string navigationDocumentName)
|
|
{
|
|
Id = id;
|
|
|
|
Name = Check.NotNullOrWhiteSpace(name, nameof(name));
|
|
ShortName = Check.NotNullOrWhiteSpace(shortName, nameof(shortName));
|
|
DefaultDocumentName = Check.NotNullOrWhiteSpace(defaultDocumentName, nameof(defaultDocumentName));
|
|
NavigationDocumentName = Check.NotNullOrWhiteSpace(navigationDocumentName, nameof(navigationDocumentName));
|
|
|
|
ExtraProperties = new Dictionary<string, object>();
|
|
}
|
|
}
|
|
}
|