mirror of https://github.com/abpframework/abp
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.
30 lines
794 B
30 lines
794 B
using System;
|
|
using Volo.Abp.Application.Dtos;
|
|
using Volo.Abp.Domain.Entities;
|
|
|
|
namespace Volo.Docs.Admin.Documents
|
|
{
|
|
[Serializable]
|
|
public class DocumentDto : EntityDto<Guid>
|
|
{
|
|
public virtual Guid ProjectId { get; set; }
|
|
|
|
public virtual string Name { get; set; }
|
|
|
|
public virtual string Version { get; set; }
|
|
|
|
public virtual string LanguageCode { get; set; }
|
|
|
|
public virtual string FileName { get; set; }
|
|
|
|
public virtual string Format { get; set; }
|
|
|
|
public virtual DateTime CreationTime { get; set; }
|
|
|
|
public virtual DateTime LastUpdatedTime { get; set; }
|
|
|
|
public virtual DateTime? LastSignificantUpdateTime { get; set; }
|
|
|
|
public virtual DateTime LastCachedTime { get; set; }
|
|
}
|
|
} |