mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-30 09:45:32 +00:00
Created FileList with ability to set used files
This commit is contained in:
16
HaDocumentNew/Models/Letter.cs
Normal file
16
HaDocumentNew/Models/Letter.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace HaDocument.Models {
|
||||
public class Letter : HaModel {
|
||||
public string Index { get; } = "";
|
||||
public string Element { get; } = "";
|
||||
public string Value { get; } = "";
|
||||
|
||||
public Letter(
|
||||
string index,
|
||||
string element,
|
||||
string value
|
||||
) {
|
||||
Index = index;
|
||||
Element = element;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user