mirror of
https://github.com/opensim/opensim.git
synced 2026-05-27 20:35:59 +08:00
18 lines
360 B
C#
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);
|
|
}
|
|
}
|