tgstation-server  4.4.0
The /tg/station 13 server suite
ConfigurationFile.cs
Go to the documentation of this file.
1 using System.ComponentModel.DataAnnotations;
3 
4 namespace Tgstation.Server.Api.Models
5 {
9  public sealed class ConfigurationFile : RawData
10  {
14  [StringLength(Limits.MaximumStringLength)]
15  public string? Path { get; set; }
16 
20  public bool? AccessDenied { get; set; }
21 
25  public bool? IsDirectory { get; set; }
26 
30  public string? LastReadHash { get; set; }
31  }
32 }
const int MaximumStringLength
Length limit for strings in fields.
Definition: Limits.cs:11
Sanity limits to prevent users from overloading
Definition: Limits.cs:6
Represents a game configuration file. Create and delete actions uncerimonuously overwrite/delete file...