Czoko_Smieciarka/Trunk/Components/CzokoŚmieciarka.DataModels/Interfaces/Garbage/IGarbage.cs

18 lines
328 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
{
2019-03-13 17:23:52 +01:00
public interface IGarbage : ICloneable
2019-03-13 14:19:38 +01:00
{
ITypeOfGarbage TypeOfGarbage { get; }
int Weight { get; }
int Volume { get; }
}
}