mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
15 lines
469 B
C#
15 lines
469 B
C#
using System.Collections.Immutable;
|
|
using System.Text.Json.Serialization;
|
|
using Observatory.Framework.Files.Converters;
|
|
using Observatory.Framework.Files.ParameterTypes;
|
|
|
|
namespace Observatory.Framework.Files.Journal.Other;
|
|
|
|
public class Synthesis : JournalBase
|
|
{
|
|
public override string Event => "Synthesis";
|
|
public string Name { get; init; }
|
|
|
|
[JsonConverter(typeof(MaterialConverter))]
|
|
public IReadOnlyCollection<Material> Materials { get; init; }
|
|
} |