9 lines
277 B
C#
9 lines
277 B
C#
using System.Text.Json.Serialization;
|
|
using MayShow.Models;
|
|
|
|
namespace MayShow.Helpers;
|
|
|
|
[JsonSerializable(typeof(Settings))]
|
|
[JsonSerializable(typeof(ReportFile))]
|
|
[JsonSerializable(typeof(PDFReport))]
|
|
internal partial class SourceGenerationContext : JsonSerializerContext { } |