Files
file-watcher/Models/Test.cs
Mike Phares 97797fc440 disk-info-helper
selenium-helper (Not fully tested)

sync-helper (Not fully tested)
2025-06-23 11:16:17 -07:00

13 lines
312 B
C#

using System.Text.Json.Serialization;
namespace File_Watcher.Models;
public record Test(string Name,
long Value);
[JsonSourceGenerationOptions(WriteIndented = true)]
[JsonSerializable(typeof(Test[]))]
internal partial class TestCollectionSourceGenerationContext : JsonSerializerContext
{
}