IDigitalFormInstanceShell.cs 230 B

123456789101112
  1. using System;
  2. namespace comal.timesheets
  3. {
  4. public interface IDigitalFormInstanceShell
  5. {
  6. Guid ID { get; }
  7. String Code { get; }
  8. String Description { get; }
  9. DateTime Completed { get; }
  10. }
  11. }