tgstation-server 6.12.0
The /tg/station 13 server suite
Loading...
Searching...
No Matches
ChatChannel.cs
Go to the documentation of this file.
1using System.ComponentModel.DataAnnotations;
2
4
6{
11 {
17 [Required]
18 [StringLength(Limits.MaximumIndexableStringLength, MinimumLength = 1)]
19 public string? ChannelData { get; set; }
20 }
21}
string? ChannelData
The channel identifier. For ChatProvider.Irc, it's the IRC channel name and optional password colon s...
Sanity limits to prevent users from overloading.
Definition Limits.cs:9
const int MaximumIndexableStringLength
Length limit for NamedEntity.Names.
Definition Limits.cs:23
@ Required
DMAPI validation must suceed for the deployment to succeed.