20 lines
301 B
C#
20 lines
301 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace Revitalize.Framework.Energy
|
||
|
{
|
||
|
public interface IEnergyInterface
|
||
|
{
|
||
|
EnergyManager EnergyManager
|
||
|
{
|
||
|
get;
|
||
|
set;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|