Moved to models
This commit is contained in:
16
Models/LineNumber.cs
Normal file
16
Models/LineNumber.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace File_Folder_Helper.Models;
|
||||
|
||||
public record LineNumber(int? Created,
|
||||
int? H1,
|
||||
int? FrontMatterYamlEnd,
|
||||
int? Status,
|
||||
int? Type,
|
||||
int? Updated);
|
||||
|
||||
[JsonSourceGenerationOptions(WriteIndented = true)]
|
||||
[JsonSerializable(typeof(LineNumber))]
|
||||
internal partial class LineNumberSourceGenerationContext : JsonSerializerContext
|
||||
{
|
||||
}
|
Reference in New Issue
Block a user