Logo
Explore Help
Sign In
claunia/marechai
1
0
Fork 0
You've already forked marechai
mirror of https://github.com/claunia/marechai.git synced 2026-07-08 17:57:08 +00:00
Code Issues 15 Packages Projects Releases Wiki Activity
Files
3aecbf566bfab220b537ddf998438bd2b2f055e0
marechai/Marechai.Database/Models/SoftwareVersionBySoftwareRelease.cs

11 lines
356 B
C#
Raw Normal View History

Add support for software compilation releases - Introduced SoftwareVersionBySoftwareRelease model to manage relationships between software releases and their included versions. - Updated SoftwareRelease model to include a Title property and make SoftwareVersionId nullable for compilation releases. - Modified MarechaiContext to include DbSet for SoftwareVersionBySoftwareRelease and adjusted relationships. - Enhanced SoftwareReleasesController to handle adding and removing included versions for compilation releases. - Updated SoftwareReleaseDialog to allow setting titles and managing included software versions. - Added UI components to display and manage included software versions in compilation releases. - Implemented service methods for fetching and managing included versions and compilations. - Updated localization resources for new fields and UI elements related to compilations.
2026-04-25 20:36:56 +01:00
namespace Marechai.Database.Models;
public class SoftwareVersionBySoftwareRelease
{
public ulong ReleaseId { get; set; }
public virtual SoftwareRelease Release { get; set; }
public ulong SoftwareVersionId { get; set; }
public virtual SoftwareVersion SoftwareVersion { get; set; }
}
Reference in New Issue Copy Permalink
Powered by Gitea Version: 1.25.4 Page: 351ms Template: 4ms
English
Bahasa Indonesia Deutsch English Español Français Gaeilge Italiano Latviešu Magyar nyelv Nederlands Polski Português de Portugal Português do Brasil Suomi Svenska Türkçe Čeština Ελληνικά Български Русский Українська فارسی മലയാളം 日本語 简体中文 繁體中文(台灣) 繁體中文(香港) 한국어
Licenses API