namespace Content.Server.GameTicking
{
///
/// Describes an entry in the crew manifest.
///
public sealed class ManifestEntry
{
public ManifestEntry(string characterName, string jobId)
{
CharacterName = characterName;
JobId = jobId;
}
///
/// The name of the character on the manifest.
///
[ViewVariables]
public string CharacterName { get; }
///
/// The ID of the job they picked.
///
[ViewVariables]
public string JobId { get; }
}
}