IPerson.cs 94 B

123456
  1. namespace Jint.Tests.Runtime.Domain;
  2. public interface IPerson
  3. {
  4. string Name { get; }
  5. }