IEntityDocument.cs 193 B

1234567891011
  1. using System;
  2. namespace InABox.Core
  3. {
  4. public interface IEntityDocument : IEntity
  5. {
  6. DocumentLink DocumentLink { get; set; }
  7. DateTime Superceded { get; set; }
  8. }
  9. }