tgstation-server 6.14.0
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 {
12 [RequestOptions(FieldPresence.Required)]
13 [RequestOptions(FieldPresence.Ignored, PutOnly = true)]
14 public virtual long? Id { get; set; }
15 }
16}
Common base of entities with IDs.
Definition EntityId.cs:7
virtual ? long Id
The ID of the entity.
Definition EntityId.cs:14
FieldPresence
Indicates whether a request field is Required or Ignored.