Moved to models
This commit is contained in:
parent
d22f2a9808
commit
db93fe01d4
@ -1,3 +1,4 @@
|
|||||||
|
using File_Folder_Helper.Models;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
|
|
||||||
namespace File_Folder_Helper.Helpers;
|
namespace File_Folder_Helper.Helpers;
|
||||||
@ -37,7 +38,7 @@ internal static class HelperKanbanMetadata
|
|||||||
return results;
|
return results;
|
||||||
}
|
}
|
||||||
|
|
||||||
internal static void SetMetadata(ILogger log, Models.AppSettings appSettings, string sourceDirectory)
|
internal static void SetMetadata(ILogger log, AppSettings appSettings, string sourceDirectory)
|
||||||
{
|
{
|
||||||
string statusLine;
|
string statusLine;
|
||||||
List<string> lines;
|
List<string> lines;
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
using File_Folder_Helper.Models;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
using System.Text.Json.Serialization;
|
using System.Text.Json.Serialization;
|
||||||
|
|
||||||
namespace File_Folder_Helper.Helpers;
|
namespace File_Folder_Helper.Models;
|
||||||
|
|
||||||
public record LineNumber(int? Created,
|
public record LineNumber(int? Created,
|
||||||
int? H1,
|
int? H1,
|
@ -1,6 +1,6 @@
|
|||||||
using System.Text.Json.Serialization;
|
using System.Text.Json.Serialization;
|
||||||
|
|
||||||
namespace File_Folder_Helper.Helpers;
|
namespace File_Folder_Helper.Models;
|
||||||
|
|
||||||
public record MarkdownFile(string File,
|
public record MarkdownFile(string File,
|
||||||
string Directory,
|
string Directory,
|
@ -1,6 +1,6 @@
|
|||||||
using System.Text.Json.Serialization;
|
using System.Text.Json.Serialization;
|
||||||
|
|
||||||
namespace File_Folder_Helper.Helpers;
|
namespace File_Folder_Helper.Models;
|
||||||
|
|
||||||
public record PackageJson([property: JsonPropertyName("name")] string Name,
|
public record PackageJson([property: JsonPropertyName("name")] string Name,
|
||||||
[property: JsonPropertyName("time")] Dictionary<string, DateTime> Times,
|
[property: JsonPropertyName("time")] Dictionary<string, DateTime> Times,
|
Loading…
x
Reference in New Issue
Block a user