Backend/e-suite.Core/eSuite.Core/Miscellaneous/IGeneralIdRef.cs
2026-01-20 21:50:10 +00:00

12 lines
404 B
C#

namespace eSuite.Core.Miscellaneous;
/// <summary>
/// General interface that can be used to identify an item.
/// To use this, will be expected to supply the Id or Guid.
/// If both at supplied, the Id is use primarily, and the Guid can then be used as a confirmation.
/// </summary>
public interface IGeneralIdRef
{
public long? Id { get; set; }
public Guid? Guid { get; set; }
}