tgstation-server 6.12.3
The /tg/station 13 server suite
Loading...
Searching...
No Matches
EntityId.cs
Go to the documentation of this file.
2{
6 public class EntityId
7 {
11 [RequestOptions(FieldPresence.Required)]
12 [RequestOptions(FieldPresence.Ignored, PutOnly = true)]
13 public virtual long? Id { get; set; }
14 }
15}
Common base of entities with IDs.
Definition EntityId.cs:7
virtual ? long Id
The ID of the entity.
Definition EntityId.cs:13
FieldPresence
Indicates whether a request field is Required or Ignored.