mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-30 17:55:32 +00:00
added basic start page setup; began rewrite of parser
This commit is contained in:
@@ -1,14 +1,13 @@
|
||||
namespace HaDocument.Models {
|
||||
public class Location {
|
||||
public string Index { get; } = "";
|
||||
public string Name { get; } = "";
|
||||
namespace HaDocument.Models;
|
||||
public class Location {
|
||||
public string Index { get; } = "";
|
||||
public string Name { get; } = "";
|
||||
|
||||
public Location(
|
||||
string index,
|
||||
string name
|
||||
) {
|
||||
Index = index;
|
||||
Name = name;
|
||||
}
|
||||
public Location(
|
||||
string index,
|
||||
string name
|
||||
) {
|
||||
Index = index;
|
||||
Name = name;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user