using System; namespace comal.timesheets { public interface IDigitalFormInstanceShell { Guid ID { get; } String Code { get; } String Description { get; } DateTime Completed { get; } } }