mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-29 09:15:33 +00:00
16 lines
365 B
C#
16 lines
365 B
C#
namespace HaDocument.Models {
|
|
public class App {
|
|
public string Index { get; } = "";
|
|
public string Name { get; } = "";
|
|
public bool Category { get; } = false;
|
|
|
|
public App(
|
|
string index,
|
|
string name,
|
|
bool category
|
|
) {
|
|
Index = index;
|
|
Name = name;
|
|
}
|
|
}
|
|
} |