IIntegrationProject.cs 164 B

12345678910
  1. using System.Collections.Generic;
  2. namespace InABox.Integration
  3. {
  4. public interface IIntegrationProject
  5. {
  6. string Title { get; set; }
  7. }
  8. }