From b610ec734e1bf8c64fac51d5ee1a59a512ed8100 Mon Sep 17 00:00:00 2001 From: glax Date: Sun, 30 Jul 2023 17:09:39 +0200 Subject: [PATCH] Chapter readonly struct --- Tranga/Chapter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tranga/Chapter.cs b/Tranga/Chapter.cs index 3dcd0ce..cf1e2bc 100644 --- a/Tranga/Chapter.cs +++ b/Tranga/Chapter.cs @@ -7,7 +7,7 @@ namespace Tranga; /// Has to be Part of a publication /// Includes the Chapter-Name, -VolumeNumber, -ChapterNumber, the location of the chapter on the internet and the saveName of the local file. /// -public struct Chapter +public readonly struct Chapter { public Publication parentPublication { get; } public string? name { get; }