22 lines
450 B
C#
22 lines
450 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using CzokoŚmieciarka.DataModels.Enums;
|
|
|
|
namespace CzokoŚmieciarka.WPF.Models
|
|
{
|
|
public class Trash
|
|
{
|
|
public GarbageType Type { get; set; }
|
|
public int Weight { get; set; }
|
|
|
|
public Trash(GarbageType type, int weight)
|
|
{
|
|
Type = type;
|
|
Weight = weight;
|
|
}
|
|
}
|
|
}
|