mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-05 22:01:33 +00:00
18 lines
383 B
C#
18 lines
383 B
C#
using System;
|
|
|
|
namespace SabreTools.Metadata
|
|
{
|
|
/// <summary>
|
|
/// Represents an item that's backed by a DictionaryBase item
|
|
/// </summary>
|
|
public abstract class ModelBackedItem : IEquatable<ModelBackedItem>
|
|
{
|
|
#region Comparision Methods
|
|
|
|
/// <inheritdoc/>
|
|
public abstract bool Equals(ModelBackedItem? other);
|
|
|
|
#endregion
|
|
}
|
|
}
|