mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-30 09:45:32 +00:00
added basic start page setup; began rewrite of parser
This commit is contained in:
@@ -1,22 +1,19 @@
|
||||
using System;
|
||||
namespace HaDocument.Models;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace HaDocument.Models
|
||||
{
|
||||
public class ZHInfo {
|
||||
public bool? alternativeLineNumbering { get; }
|
||||
public bool? dateChanged { get; }
|
||||
public string Volume { get; }
|
||||
public string Page { get; }
|
||||
|
||||
public class ZHInfo
|
||||
{
|
||||
public bool alternativeLineNumbering { get; } = false;
|
||||
public bool dateChanged { get; } = false;
|
||||
public string Volume { get; } = "";
|
||||
public string Page { get; } = "";
|
||||
|
||||
public ZHInfo(bool alternativeLineNumbering, bool dateChanged, string Volume, string Page) {
|
||||
this.alternativeLineNumbering = alternativeLineNumbering;
|
||||
this.dateChanged = dateChanged;
|
||||
this.Volume = Volume;
|
||||
this.Page = Page;
|
||||
}
|
||||
public ZHInfo(string Volume, string Page, bool? alternativeLineNumbering, bool? dateChanged) {
|
||||
this.alternativeLineNumbering = alternativeLineNumbering;
|
||||
this.dateChanged = dateChanged;
|
||||
this.Volume = Volume;
|
||||
this.Page = Page;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user