ICostSheet.cs 179 B

12345678910
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. public interface ICostSheet : IEntity
  5. {
  6. string Code { get; set; }
  7. string Description { get; set; }
  8. }
  9. }