mirror of
https://github.com/claunia/marechai.git
synced 2026-07-08 17:57:08 +00:00
11 lines
341 B
C#
11 lines
341 B
C#
|
|
namespace Marechai.Database.Models;
|
||
|
|
|
||
|
|
public class SoftwareBySoftwareCompilation
|
||
|
|
{
|
||
|
|
public ulong SoftwareCompilationId { get; set; }
|
||
|
|
public virtual SoftwareCompilation SoftwareCompilation { get; set; }
|
||
|
|
|
||
|
|
public ulong SoftwareId { get; set; }
|
||
|
|
public virtual Software Software { get; set; }
|
||
|
|
}
|