using Content.Shared.Disease;
namespace Content.Server.Disease.Components
{
[RegisterComponent]
public sealed class DiseaseServerComponent : Component
{
///
/// Which diseases this server has information on.
///
[ViewVariables(VVAccess.ReadWrite)]
public List Diseases = new();
}
}