16 lines
322 B
C#
16 lines
322 B
C#
|
using CzokoŚmieciarka.DataModels.Models;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace CzokoŚmieciarka.WPF.Models
|
|||
|
{
|
|||
|
public interface IObject
|
|||
|
{
|
|||
|
Coords Location { get; set; }
|
|||
|
string ImagePath { get; set; }
|
|||
|
}
|
|||
|
}
|