IW4M-Admin/SharedLibraryCore/Interfaces/ITrackable.cs

12 lines
194 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace SharedLibraryCore.Interfaces
{
public interface ITrackable
{
string GetTrackableValue();
}
}