Files
marechai/Marechai.Database/Models/StandaloneFile.cs
Natalia Portillo 58a5d858a1 Remove Software Variants and Subvariants functionality
- Deleted SoftwareVariantDialogResult class and associated files.
- Removed SoftwareVariants.razor and SoftwareVariants.razor.cs components.
- Cleaned up ReleaseView.razor and ReleaseView.razor.cs by removing variant and subvariant references.
- Updated Spanish resource files to remove variant and subvariant translations.
- Removed SoftwareSubvariantsService and SoftwareVariantsService classes.
- Adjusted SoftwareReleasesService and SoftwareService to eliminate variant-related methods.
- Updated service registration to remove SoftwareVariantsService and SoftwareSubvariantsService.
2026-04-26 21:28:09 +01:00

37 lines
1.6 KiB
C#

/******************************************************************************
// MARECHAI: Master repository of computing history artifacts information
// ----------------------------------------------------------------------------
//
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// --[ License ] --------------------------------------------------------------
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
// ----------------------------------------------------------------------------
// Copyright © 2003-2026 Natalia Portillo
*******************************************************************************/
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace Marechai.Database.Models;
public class StandaloneFile : BaseFile
{
[Required]
public virtual SoftwareRelease SoftwareRelease { get; set; }
public virtual ICollection<FileDataStreamsByStandaloneFile> DataStreams { get; set; }
}