using System; using SUISS.Storage; namespace SUISS.Cloud { public interface IGift : IStorable { string GiftId { get; } string SenderName { get; } string Type { get; } long Amount { get; } } }