forked from ddrilling/AsbCloudServer
14 lines
311 B
C#
14 lines
311 B
C#
|
using System;
|
|||
|
|
|||
|
namespace AsbCloudApp.Data
|
|||
|
{
|
|||
|
public class FilePropertiesDto
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public string Name { get; set; }
|
|||
|
public int IdCategory { get; set; }
|
|||
|
public DateTime UploadDate { get; set; }
|
|||
|
public string UserName { get; set; }
|
|||
|
}
|
|||
|
}
|