IContactType.cs 117 B

1234567
  1. namespace Comal.Classes
  2. {
  3. public interface IContactType
  4. {
  5. string Description { get; set; }
  6. }
  7. }