Files
opensim/OpenSim/Services/Interfaces/IAttachmentsService.cs
2010-04-24 16:53:47 +02:00

18 lines
360 B
C#

////////////////////////////////////////////////////////////////
//
// (c) 2009, 2010 Careminster Limited and Melanie Thielker
//
// All rights reserved
//
using System;
using Nini.Config;
namespace OpenSim.Services.Interfaces
{
public interface IAttachmentsService
{
string Get(string id);
void Store(string id, string data);
}
}