12 lines
404 B
C#
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; }
|
|
} |