9 lines
144 B
C#
9 lines
144 B
C#
using System;
|
|
|
|
namespace Global.Shared.API
|
|
{
|
|
public interface ICustomData : IDisposable
|
|
{
|
|
IGridData GridData { get; }
|
|
}
|
|
} |