20 lines
383 B
C#
20 lines
383 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BS.Shared.Interface
|
|
{
|
|
public interface IStoredFile
|
|
{
|
|
string FileName { get; }
|
|
string FilePath { get; }
|
|
string ContentType { get; }
|
|
long Size { get; }
|
|
string Checksum { get; }
|
|
int? BeWoObjectTid { get; }
|
|
long? BeWoObjectOid { get; }
|
|
}
|
|
}
|