2026-05-03 21:35:04 +00:00
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Sozsoft.SqlQueryManager.Application.Contracts;
|
|
|
|
|
|
|
|
|
|
public class SqlDataFileDto
|
|
|
|
|
{
|
|
|
|
|
public string FileName { get; set; } = string.Empty;
|
2026-05-27 12:36:46 +00:00
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
public string RelativePath { get; set; } = string.Empty;
|
|
|
|
|
public bool IsDirectory { get; set; }
|
2026-05-03 21:35:04 +00:00
|
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
|
}
|