namespace eSuite.Core.Miscellaneous; /// /// 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. /// public interface IGeneralIdRef { public long? Id { get; set; } public Guid? Guid { get; set; } }