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.
23 lines
583 B
23 lines
583 B
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using Volo.Docs.Language;
|
|
using Volo.Docs.Projects;
|
|
|
|
namespace Volo.Docs.Documents
|
|
{
|
|
public class GetDocumentInput
|
|
{
|
|
public Guid ProjectId { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(DocumentConsts.MaxNameLength)]
|
|
public string Name { get; set; }
|
|
|
|
[StringLength(ProjectConsts.MaxVersionNameLength)]
|
|
public string Version { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(LanguageConsts.MaxLanguageCodeLength)]
|
|
public string LanguageCode { get; set; }
|
|
}
|
|
}
|