IStructCodeName.cs 198 B

12345678
  1. namespace Quadarax.Application.QLiberace.Base.Entities.Interfaces
  2. {
  3. public interface IStructCodeName
  4. {
  5. string Code { get; set; }
  6. string Name { get; set; }
  7. }
  8. }