Czoko_Smieciarka/Trunk/DataModels/Interfaces/ITypeOfGarbage.cs

16 lines
329 B
C#
Raw Normal View History

2019-03-13 14:19:38 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CzokoŚmieciarka.DataModels.Interfaces
{
public interface ITypeOfGarbage
{
string GarbageType { get; }
int ProcessingTimePerUnit { get; }
int Density { get; }
}
}