12 lines
362 B
C#
12 lines
362 B
C#
using System;
|
|
|
|
namespace Sozsoft.SqlQueryManager.Application.Contracts;
|
|
|
|
public class SqlDataFileDto
|
|
{
|
|
public string FileName { get; set; } = string.Empty;
|
|
public string Name { get; set; } = string.Empty;
|
|
public string RelativePath { get; set; } = string.Empty;
|
|
public bool IsDirectory { get; set; }
|
|
public DateTime CreatedAt { get; set; }
|
|
}
|