tgstation-server  4.4.0
The /tg/station 13 server suite
RawData.cs
Go to the documentation of this file.
1 namespace Tgstation.Server.Api.Models.Internal
2 {
6  public abstract class RawData
7  {
11 #pragma warning disable CA1819, SA1011 // Properties should not return arrays, Closing square bracket should be followed by a space
12  public byte[]? Content { get; set; }
13 #pragma warning restore CA1819, SA1011 // Properties should not return arrays, Closing square bracket should be followed by a space
14  }
15 }