Initial Commit ...

This commit is contained in:
2024-01-25 04:37:38 +03:30
commit c5d69522a9
26 changed files with 1252 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
using System;
using System.ComponentModel.DataAnnotations;
using xCommons.Constants;
using xModels.Base;
namespace xModels.Dtos {
public partial class XFileDto : XBaseDto {
[Required]
public string AuthorId { get; set; }
public XFileType Type { get; set; }
[Required]
[StringLength (255)]
public string Name { get; set; }
[StringLength (255)]
public string Thumb { get; set; }
[Required]
[StringLength (255)]
public string Path { get; set; }
[StringLength (255)]
public string ThumbPath { get; set; }
[Required]
public DateTime UploadedOn { get; set; }
}
}