26 lines
718 B
C#
26 lines
718 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using xCommons.Constants;
|
|
using xModels.Base;
|
|
using xModels.Dtos;
|
|
|
|
namespace xFileService.Models.Dtos
|
|
{
|
|
public class XFileDto : XBaseDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public XFileType Type { get; set; }
|
|
public string Name { get; set; }
|
|
public string Thumb { get; set; }
|
|
public string Path { get; set; }
|
|
public string ThumbPath { get; set; }
|
|
public DateTime UploadedOn { get; set; }
|
|
public string FileName { get; set; }
|
|
|
|
public string OwnerId { get; set; }
|
|
public XPersonDto Owner { get; set; }
|
|
|
|
public IList<string> References = new List<string>();
|
|
}
|
|
} |