tgstation-server
6.12.0
The /tg/station 13 server suite
Loading...
Searching...
No Matches
src
Tgstation.Server.Host
Models
RevInfoTestMerge.cs
Go to the documentation of this file.
1
using
System;
2
using
System.ComponentModel.DataAnnotations;
3
4
namespace
Tgstation.Server.Host.Models
5
{
9
public
sealed
class
RevInfoTestMerge
10
{
14
public
long
Id
{
get
;
set
; }
15
19
[Required]
20
public
TestMerge
TestMerge
{
get
;
set
; }
21
25
[Required]
26
public
RevisionInformation
RevisionInformation
{
get
;
set
; }
27
31
[Obsolete(
"For use by EFCore only"
,
true
)]
32
public
RevInfoTestMerge
()
33
{
34
TestMerge
=
null
!;
35
RevisionInformation
=
null
!;
36
}
37
43
public
RevInfoTestMerge
(
TestMerge
testMerge,
RevisionInformation
revisionInformation)
44
{
45
TestMerge
= testMerge ??
throw
new
ArgumentNullException(nameof(testMerge));
46
RevisionInformation
= revisionInformation ??
throw
new
ArgumentNullException(nameof(revisionInformation));
47
}
48
}
49
}
Tgstation.Server.Host.Models.RevInfoTestMerge
Many to many relationship for Models.RevisionInformation and Models.TestMerge.
Definition
RevInfoTestMerge.cs:10
Tgstation.Server.Host.Models.RevInfoTestMerge.Id
long Id
The row Id.
Definition
RevInfoTestMerge.cs:14
Tgstation.Server.Host.Models.RevInfoTestMerge.RevInfoTestMerge
RevInfoTestMerge(TestMerge testMerge, RevisionInformation revisionInformation)
Initializes a new instance of the RevInfoTestMerge class.
Definition
RevInfoTestMerge.cs:43
Tgstation.Server.Host.Models.RevInfoTestMerge.RevInfoTestMerge
RevInfoTestMerge()
Initializes a new instance of the RevInfoTestMerge class.
Definition
RevInfoTestMerge.cs:32
Tgstation.Server.Host.Models.RevisionInformation
Definition
RevisionInformation.cs:10
Tgstation.Server.Host.Models.TestMerge
Definition
TestMerge.cs:9
Tgstation.Server.Host.Models
Definition
ChatBot.cs:9
Generated by
1.9.8