Skip to content

Commit

Permalink
Merge branch 'dev' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
Noggog committed Mar 1, 2021
2 parents 6030b55 + 6a1e0a3 commit 45de5b7
Show file tree
Hide file tree
Showing 78 changed files with 1,385 additions and 477 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Mutagen.Bethesda.Synthesis.Settings
{
/// <summary>
/// Specifies a member to be displayed when the object is part of any summary areas,
/// such as when scoping a child setting and this object is being displayed in the drill down summary
/// </summary>
[AttributeUsage(
AttributeTargets.Class,
AllowMultiple = true)]
public class SynthesisObjectNameMember : Attribute
{
public string Name { get; }

public SynthesisObjectNameMember(string name)
{
Name = name;
}
}
}
Loading

0 comments on commit 45de5b7

Please sign in to comment.