﻿using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace Platnosci.Core.Interface
{
    public interface IIdentifiable
    {
        int Id { get; }
    }
}
