/* * SPDX-License-Identifier: AGPL-3.0-or-later * Copyright (C) 2025 Sergej Görzen * This file is part of OmiLAXR. */ namespace OmiLAXR.Composers { /// /// Represents an author with basic information. /// public struct Author { /// /// Gets the name of the author. /// public string Name { get; private set; } /// /// Gets the email address of the author. /// public string Email { get; private set; } /// /// Initializes a new instance of the Author struct. /// /// The name of the author. /// The email address of the author. public Author(string name, string email) { Name = name; Email = email; } } }