mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2026-02-11 18:34:36 +01:00
19 lines
401 B
C#
19 lines
401 B
C#
using Glamourer.Automation;
|
|
|
|
namespace Glamourer.Designs.Links;
|
|
|
|
public record struct DesignLink(Design Link, ApplicationType Type);
|
|
|
|
public readonly record struct LinkData(Guid Identity, ApplicationType Type, LinkOrder Order)
|
|
{
|
|
public override string ToString()
|
|
=> Identity.ToString();
|
|
}
|
|
|
|
public enum LinkOrder : byte
|
|
{
|
|
Self,
|
|
After,
|
|
Before,
|
|
None,
|
|
};
|